Next.js Discord

Discord Forum

Education App Displaying

Unanswered
Dwarf Hotot posted this in #help-forum
Open in Discord
Dwarf HototOP
If I want to build an education app, and have a lessons page where users learn content that they click through. Should I do, multiple pages rerouted for each lesson, or a carousel? I want to keep track of the state so they know how far they've gone and can pick up wherever they left off when they log back in. Whats the best way to go at this? Should I use react carousel for navigation, or rerender pages, or just link to the next page? Thanks

2 Replies

European sprat
I'd definitely go with different pages because you can get the benefits of server components, link directly to a page and not need to rely on client side for setting the specific carousel item
@European sprat I'd definitely go with different pages because you can get the benefits of server components, link directly to a page and not need to rely on client side for setting the specific carousel item
Dwarf HototOP
Should I set up each page as different files? It’d be about 15 slides per topic or is there a faster cleanlier way to make that happen