This project implements a dynamic routing system for MDX files in the docs folder, automatically generating the sidebar navigation.
- Dynamic Routing: All MDX files in the 
src/app/docsfolder are automatically accessible via their filename - Automatic Sidebar: The sidebar is automatically generated from MDX files and their front matter
 - Nested Directories: Support for organizing MDX files in subdirectories
 - Front Matter Support: Use YAML front matter to customize titles and metadata
 
- Create a new 
.mdxfile in thesrc/app/docsfolder - Add front matter at the top of the file:
 
---
title: Your Page Title
---
# Your Content Here
Your MDX content goes here...- The page will automatically appear in the sidebar and be accessible at 
/docs/your-filename 
You can organize your documentation in subdirectories:
src/app/docs/
├── getting-started.mdx
├── installation.mdx
└── api/
    ├── endpoints.mdx
    └── authentication.mdx
This will create a nested structure in the sidebar:
- Getting Started
 - Installation Guide
 - API
- Endpoints
 - Authentication
 
 
title: The title that appears in the sidebar (defaults to filename if not provided)- Any other front matter will be available in the page data
 
The build process automatically:
- Scans the 
docsfolder for MDX files - Generates the 
_meta.tsfile with the sidebar structure - Builds the Next.js application
 
To manually regenerate the sidebar:
npm run prebuildsrc/
├── app/
│   ├── docs/
│   │   ├── page.mdx (main docs page)
│   │   ├── getting-started.mdx
│   │   ├── installation.mdx
│   │   └── api/
│   │       └── endpoints.mdx
│   ├── _meta.ts (auto-generated)
│   └── [...slug]/
│       └── page.tsx (dynamic route handler)
├── lib/
│   └── mdx-utils.ts (MDX file utilities)
└── scripts/
    └── generate-meta.ts (meta generation script)
npm run devThe development server will automatically pick up new MDX files, but you may need to restart to see sidebar changes.
npm run buildThis will generate the static site with all MDX files properly routed and the sidebar updated.