Writing Pages
This setup intentionally keeps authoring simple.
Add a new page
Section titled “Add a new page”- Pick the section folder that should own the page.
- Add a
.mdfile under that folder. - Add frontmatter with at least
titleanddescription.
Example:
src/content/docs/ concepts/ permissions.md---title: Permissionsdescription: How Quantify handles documentation access and publishing.---
Write the page content here.Add a new section
Section titled “Add a new section”- Create a new folder under
src/content/docs. - Add an
index.mdpage for the section landing page. - Add an
autogenerateentry inastro.config.mjsif 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.