☰ Contents

First page

🚀 Getting started Updated: August 22, 2026

A docs page consists of frontmatter and Markdown – nothing else.

Create the file

Every page is a Markdown file under src/content/docs/<language>/<area>/. The file name becomes the URL:

src/content/docs/en/start/erste-seite.md  →  /en/docs/start/erste-seite/

Frontmatter

---
title: First page
description: One sentence that appears on cards and in search.
section: start
order: 2
icon: 📄
---
FieldRequiredMeaning
titleyesPage title, shown in the tree
descriptionyesSubtitle and search text
sectionyesArea from src/data/docs.ts
ordernoPosition within the area
iconnoEmoji as page icon
updatednoDate in the meta line
draftnotrue hides the page

Content

Headings of level 2 and 3 automatically land in the navigation on the right. Tables, code blocks and quotes take on the look of the foundation.

Short pages with clear headings get read more often than long ones – Atlas rewards that with a navigation that shows every heading.

Next step

How areas and their order come together is explained under Project structure.