Please who can solve this? So on the Discord app, you will create a bot connection. It will create a link, and you will put that link on headers.js in the Discord button. After that, the return link that you will put on the Discord app will

:file_folder: Project
├── :file_folder: Frontend
│ ├── :file_folder: components
│ │ ├── :page_facing_up: DiscordConnectionForm.jsx
│ │ ├── :page_facing_up: TokenVerificationForm.jsx
│ │ └── :page_facing_up:
│ ├── :file_folder: pages
│ │ ├── :page_facing_up: index.jsx
│ │ └── :page_facing_up:
│ ├── :file_folder: utils
│ │ ├── :page_facing_up: api.js
│ │ └── :page_facing_up:
│ ├── :page_facing_up: package.json
│ ├── :page_facing_up: package-lock.json
│ └── :page_facing_up:
├── :file_folder: Backend
│ ├── :file_folder: controllers
│ │ ├── :page_facing_up: DiscordConnectionController.js
│ │ ├── :page_facing_up: TokenVerificationController.js
│ │ └── :page_facing_up:
│ ├── :file_folder: models
│ │ ├── :page_facing_up: DiscordConnectionModel.js
│ │ ├── :page_facing_up: TokenVerificationModel.js
│ │ └── :page_facing_up:
│ ├── :file_folder: routes
│ │ ├── :page_facing_up: DiscordConnectionRoutes.js
│ │ ├── :page_facing_up: TokenVerificationRoutes.js
│ │ └── :page_facing_up:
│ ├── :file_folder: utils
│ │ ├── :page_facing_up: database.js
│ │ └── :page_facing_up:
│ ├── :page_facing_up: app.js
│ ├── :page_facing_up: package.json
│ ├── :page_facing_up: package-lock.json
│ └── :page_facing_up:
└── :page_facing_up: requirements.txt
similar structure as my file i give you for better understand
:page_facing_up: Frontend/package.json
{
“name”: “discord-connection-frontend”,
“version”: “1.0.0”,
“description”: “Frontend for Discord connection”,
“dependencies”: {
“axios”: “^0.24.0”,
“react”: “^17.0.2”,
“react-dom”: “^17.0.2”,
“next”: “^12.0.9”,
“semantic-ui-css”: “^2.4.1”,
“semantic-ui-react”: “^2.0.3”
},

:page_facing_up: Backend/package.json
{
“name”: “discord-connection-backend”,
“version”: “1.0.0”,
“description”: “Backend for Discord connection”,
“dependencies”: {
“cors”: “^2.8.5”,
“express”: “^4.17.1”,
“jsonwebtoken”: “^8.5.1”,
“mongoose”: “^6.2.2”
},