Skip to content

Writing Pages

This setup intentionally keeps authoring simple.

  1. Pick the section folder that should own the page.
  2. Add a .md file under that folder.
  3. Add frontmatter with at least title and description.

Example:

src/content/docs/
concepts/
permissions.md
---
title: Permissions
description: How Quantify handles documentation access and publishing.
---
Write the page content here.
  1. Create a new folder under src/content/docs.
  2. Add an index.md page for the section landing page.
  3. Add an autogenerate entry in astro.config.mjs if you want the section to appear in the top-level sidebar.

This keeps the navigation aligned with the content tree instead of maintaining a separate menu file for every page.