Frontend Folder Structure

apps/web/
│   ├── src/app/
        ├── page.tsx           # Root landing page
        ├── layout.tsx         # Root layout (applies to all routes)
        ├── (auth)/            # Authentication routes (login, signup, etc.)
        ├── dashboard/         # User dashboard and nested features
        ├── (content)/         # Content-related routes (e.g., blogs, privacy)
        ├── ai/                # AI chat example
        ├── todos/             # Todo app example

For more details, see the Architecture and related docs.

Table of Contents


Quickstart

Jump to Getting Started to set up your local environment and run the app.