Next.js logo
  1. app/page.tsx is the landing page for your application, currently being displayed.
  2. app/login/page.tsx is the login page for users.
  3. app/users/page.tsx is the dashboard that shows an overview of all users, fetched from the server.
  4. app/users/[id]/page.tsx is a slug page that shows info of a particular user. Since each user has its own id, each user has its own infopage, dynamically with the use of slugs.
  5. To test, modify the current page app/page.tsx and save to see your changes instantly.