Closed marcterre closed 1 year ago
Hi Marc, I like how detailed your tasks are.
There are only two little things I don't really understand. What do you mean by "the list items on the landingpage are not static anymore"? I think you should explain this in your tasks section. Something like you wanna map over an array containing the created projects or however you wanna solve this.
And the second thing is "delete the static json file". I think that's related to my first point. Maybe you also write what you do instead of deleting the json file 'cause you probably need a different solution.
Hey Niklas,
I changed a few parts. Hope now its clear. I also change "project title" to "project name".
Hi Marc, great job! 👍 But I have some remarks:
I hope my remarks are helpful. Feel free to ask me to explain them further :)
I changed a bit, hope this works better
Value Proposition
As a user I want to have different pages for my projects so that i am able to see the details for every project.
Description
Currently the project names on the landingpage where imported from a static JSON file. Now i want to get the project names from the user input and render them on the landingpage. Also clicking a project name on the landingpage leaded to the same page. Now i want to have dynamic routes so that every project name leads to its own page.
Acceptance Criteria
Tasks
const router = useRouter();
const { slug } = router.query;
const currentProject = globalProject.find((project) => project.slug === slug
)<Link href={
/your-projects/${project.slug}}>
)Complexity
L