Next.js
Private Pages
Dashboard
The main private page for your site is located at src/app/dashboard/page.tsx
. Users must be authenticated to access this page.
Any page you add under /dashboard will be private. You can add as many pages as you like.
The logic for checking if a user is authenticated is located in src/app/dashboard/layout.tsx
.