Project Structure
This page explains the organization of the codebase and where to place your content.
.
├── src/
│ ├── content/ # MDX pages
│ ├── app/ # App Router (layout.tsx, page.tsx, etc.)
│ ├── components/ # Reusable UI components
│ └── mdx-components.ts
├── public/
├── next.config.ts
└── package.json
Organizing your project properly helps improve maintainability and collaboration.
Last updated on