Documentation
Scaffold for AXP docs — add MDX under content/docs and wire the sidebar with meta.json files.
This site is a minimal shell. Use it as the template for real pages.
Add a page at the top level
- Create
content/docs/my-page.mdxwith YAML frontmatter (title,description). - Add
"my-page"to thepagesarray incontent/docs/meta.json.
Add a section (folder)
- Create a folder, e.g.
content/docs/guides/. - Add
content/docs/guides/meta.jsonwith"title"and a"pages"list (file names without.mdx). - Add each page as
content/docs/guides/<name>.mdx. - Register the folder in the root
meta.jsonby adding"guides"topages.
See Sample guide for a nested example.