Hanzo
ProjectshanzoaiDocs template

Getting Started

Quick start guide for your documentation

Getting Started

This is an example page to demonstrate the documentation structure.

Installation

pnpm install

Development

Start the development server:

pnpm dev

Your 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.tsx with your site metadata
  • Update app/docs/layout.tsx with your GitHub and social links
  • Replace the favicon and OG image in public/
  • Add your documentation content

How is this guide?

On this page