Loading docs page
A practical map of the routes, config, and component folders that matter.
These are the public route folders most teams touch first:
| Path | Purpose |
|---|---|
src/app/(noauth)/(site) | Public homepage and site shell |
src/app/(noauth)/docs | Docs routes, docs layout, and docs error states |
src/app/(noauth)/pricing | Pricing page |
src/app/(auth) | Authenticated account and dashboard routes |
These files drive the public experience without making you hunt through component code first:
| Path | Purpose |
|---|---|
src/config/landing-page.js | Homepage section content and public-site narrative |
src/config/foundation.js | Foundation feature inventory and section theme data |
src/config/navigation.js | Shared site navigation and footer links |
src/config/docs-nav.js | Serializable docs navigation order |
src/config/runtime.js | Runtime flags, provider config, and operational settings |
src/docs/content/* | Docs page content in MDX |
These are the main directories to reach for before adding new abstractions:
| Path | Purpose |
|---|---|
src/components/ui/* | Shared UI primitives |
src/components/layout/* | Header, footer, theme controls, and shells |
src/components/brand/* | Logos and brand presentation |
src/components/marketing/* | Public marketing sections when you need them |
src/docs/_components/* | Docs-only shell and MDX helpers |