Pages Overview
All 20 pages, grouped as they appear in the sidebar. Routes live under
src/app/; their page-level views live under src/components/<area>/.
Authentication — src/app/(auth)/
All use React Hook Form + Zod validation and a shared split-screen layout
(src/app/(auth)/layout.tsx).
Dashboard — src/app/(dashboard)/
AI
Management
Billing
Settings
Other
Route groups
Routes are organized into two route groups:
(auth)— uses the split-screen auth layout, no app chrome.(dashboard)— wrapped in theAppShell(sidebar + top bar).
The parentheses mean the group name doesn't appear in the URL.
Next: Components Guide →