Hi! I have this assingment to create a website containing the courses that the student is attending, the possibility to add new courses to the list(which works so far), and the possibility to add questions regarding each corse under the direct link. But i have a problem in creating a proper file for the particular course’s page to work. I’m working with Svelte and js, here’s my folder structure for frontend:.
├── lib
│ └── components
│ ├── QuestionForm.svelte
│ ├── QuestionItem.svelte
│ ├── QuestionList.svelte
│ └── Questions.svelte
├── routes
│ ├── courses
│ │ ├── [id]
│ │ │ ├── questions
│ │ │ │ └── [qid]
│ │ │ │ ├── +page.js
│ │ │ │ └── +page.svelte
│ │ │ ├── +page.js
│ │ │ └── +page.svelte
│ │ └── +page.svelte
| ├── +layout.server.js
| ├── +layout.svelte
│ └── +page.svelte
├── app.css
├── app.html
└── hooks.server.js I could provide more files but which ones should i focus on? The ones in [qid] directory? Sorry if my question is too general, i’m new to this