Getting Started

This docs shell uses Astro, MDX content collections, Tailwind v4, and a React sidebar.

What Is Included

  • Content pages under src/content/docs.
  • Frontmatter-driven sidebar grouping and ordering.
  • Branding from config.json (site_title and logo_path).
  • Homepage at / with docs under /docs/*.

Add a New Page

Create a new .mdx file in src/content/docs and include:

---
title: Your Page Title
order: 3
section: Basics
description: Optional page summary
---

The page will be automatically available at /docs/<filename>.

dqnamo