both handbook and docs use the same system. pages are MDX files (markdown with React component support) that live in the content/ folder.
content/
āāā handbook/ ā /handbook/*
ā āāā index.mdx ā /handbook (landing page content)
ā āāā 01-section/ ā /handbook/section
ā ā āāā index.mdx ā section landing page
ā ā āāā 01-page.mdx ā /handbook/section/page
ā āāā 02-other.mdx ā /handbook/other
āāā docs/ ā /docs/*
āāā (same structure)
.mdx file in the appropriate folder---
title: "your page title"
---
use numeric prefixes to control the order in the sidebar menu:
01-first-page.mdx appears before 02-second-page.mdx01-setup.mdx ā /docs/setup)01-section-name/index.mdx inside for the section landing page01-child.mdx, 02-child.mdxsince these are MDX files, you can use React components. custom styled components are available for:
code - inline codepre - code blocks