Skip to content

ViragJain3010/nextjs-dashboard

Repository files navigation

Next.js App Router Course - Starter

This is the starter template for the Next.js App Router Course. It contains the starting code for the dashboard application.

For more information, see the course curriculum on the Next.js Website.

Points To Remeber

  1. page file: /app/page.tsx - this is the home page associated with the route /.
  2. To create a nested route, you can nest folders inside each other and add page.tsx files inside them. e.g. /app/dashboard/page.tsx is associated with the /dashboard route.