Ref - https://github.com/code100x/cms/tree/main/src/app/(marketing)

Assignment

Create a signup and signin page in a nextjs app where both of the pages are wrapped in a layout, but no other pages are.

The website supports three pages

  1. /signup
  2. /signin
  3. /user

Screenshot 2024-12-21 at 6.06.34 PM.png

<aside> 💡

You cant keep all the routes at the same level. If you do, the layout will be applied to the user page as well. Hence the route groups

</aside>