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.
- page file:
/app/page.tsx
- this is the home page associated with the route/
. - 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.