description: How to add a new guide to the Educação section.
Guides live under docs/. Each guide is a single Markdown file. Sidebar autogenerates from the folder structure.
Decide the slug. Pick a kebab-case slug for the URL (e.g. claude-code-overview). The file becomes docs/<slug>.md and the URL becomes /educacao/<slug>.
Create the file. docs/<slug>.md with frontmatter:
---
title: Título do guia
description: Resumo de uma linha para meta description e cards sociais.
---
# Título do guia
Conteúdo em Markdown.
For nested guides, group under a folder (e.g. docs/claude-code/getting-started.md). Each folder becomes a sidebar category.
Verify locally. npm run start. Open /educacao/<slug> and confirm the guide renders, the sidebar entry appears, and any code blocks highlight.
Update static/llms.txt. Add a line under ## Educação linking to the new entry's .md source: - [<title>](https://gazperi.com/educacao/<slug>.md): <one-line summary>. Keeps LLM index in sync.
.mdx instead of .md.DOCS/brand-voice/ rules.
description frontmatter — falls back to a generated snippet that often misrepresents the page in social previews.static/llms.txt — site stays browser-readable but the LLM index drifts..mdx file when plain .md would do — adds JSX parser overhead with no payoff.