ProjectshanzoaiDocs template
Getting Started
Quick start guide for your documentation
Getting Started
This is an example page to demonstrate the documentation structure.
Installation
pnpm installDevelopment
Start the development server:
pnpm devYour docs will be available at http://localhost:3003.
Adding Pages
Create new pages by adding .mdx files in the content/docs/ directory:
---
title: My New Page
description: Description for SEO
---
# My New Page
Content goes here...Then add the page to content/docs/meta.json:
{
"pages": [
"index",
"my-new-page"
]
}Next Steps
- Customize
app/layout.tsxwith your site metadata - Update
app/docs/layout.tsxwith your GitHub and social links - Replace the favicon and OG image in
public/ - Add your documentation content
How is this guide?