Pages Overview
All 30+ 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).
Onboarding — src/app/(onboarding)/
A standalone first-run flow with its own minimal layout (logo + "Skip"), stepper rail, progress bar, and a completion summary — no app sidebar.
Overview
Workspace
AI
Components
The Form Components page is organized into three tabs: Essentials (validated RHF + Zod form), Advanced inputs (date / range / time pickers, color picker, tags, multi-select, combobox, OTP, rating, stepper, range slider, phone, rich text editor, image cropper, file dropzone), and Form builder (add / remove / reorder fields with a live preview).
Management
Billing
Settings
The Notification Center is also surfaced from the top-bar bell, which shares
live read-state with the page via a NotificationsProvider.
Other
Route groups
Routes are organized into route groups:
(auth)— split-screen auth layout, no app chrome.(onboarding)— minimal full-screen layout for the first-run wizard.(dashboard)— wrapped in theAppShell(sidebar + top bar).(docs)— the in-app documentation.
The parentheses mean the group name doesn't appear in the URL.
Next: Components Guide →