Skip to content

Adding Pages

Every page on this site is a Markdown file under src/content/docs/.

  1. Create a .md file in src/content/docs/ or any folder inside it.
  2. Start the file with front matter containing a title and a description.
  3. Write the body in plain Markdown.
  4. Commit and push. Vercel rebuilds the site automatically.

Every page needs this block at the top:

---
title: Your Page Title
description: One line describing the page.
---

The title becomes the page heading and the sidebar label. The description is used for search results and link previews.

Files inside src/content/docs/start-here/ show up under the Start Here group in the sidebar. To add a new group, create a folder and register it in astro.config.mjs.