Welcome to Your Documentation

Build beautiful documentation sites with Frame Master and MDX.

Getting Started

This template provides everything you need to create a modern documentation website:

Quick Start

# Install dependencies
bun install
 
# Start development server
bun run dev
 
# Build for production
bun run build

See Showcase

Check out the MDX Showcase page to see examples of interactive components and layouts you can create with MDX.

Configuration

Customize your site by editing src/site.config.ts:

export const siteConfig = {
  name: "My Documentation",
  description: "Your site description",
  // ... more options
};

Writing Content

Create new pages by adding .mdx files in the src/pages directory:

src/pages/
├── index.mdx        # Home page (/)
├── docs/
│   ├── index.mdx    # Docs index (/docs)
│   └── guide.mdx    # Guide page (/docs/guide)
└── about/
    └── index.mdx    # About page (/about)

Using Components

Import and use React components directly in your MDX files:

import { MyComponent } from "../components/MyComponent";
 
# My Page
 
<MyComponent prop="value" />

Ready to build something amazing? Check out the documentation to learn more.