Blog posts
Add a .md or .mdx file to src/content/blog/. The filename becomes the URL slug.
---title: 'My new post'description: 'One or two sentences used in cards, SEO, and the RSS feed.'publishedAt: 2026-08-01tags: ['TypeScript', 'Web']category: 'Engineering'featured: falsedraft: false---
Your content here.Schema notes:
publishedAtis required;updatedAtis optional and shown when presentfeatured: truesurfaces the post on the homepagedraft: truehides the post from production builds but keeps it visible in devimage(optional) is used for the cover, cards, and Open Graph- Reading time is computed automatically — nothing to declare
Projects
Add a file to src/content/projects/:
---title: 'My Tool'description: 'What it is, in one sentence.'technologies: ['TypeScript', 'Node.js']github: 'https://github.com/you/my-tool'demo: 'https://my-tool.example.com'status: 'active' # active | maintained | archived | in-progressyear: 2026featured: true---
## Overview...The body supports the same markdown features as blog posts. A common structure: Overview → Technology stack → Challenges → Results.
The image field accepts any format the browser can render — PNG, JPG, SVG, WebP, or an animated GIF for a live demo (place the file in public/images/projects/). The sample BlazeKit project ships with an animated terminal GIF to copy from. Keep GIFs 16:9 (e.g. 800×450) so they fit the card crop, and under ~2MB so they don’t drag down page weight.
Docs pages
Add files to src/content/docs/. Sidebar structure comes from frontmatter, not folders:
---title: 'My guide'group: 'Guides' # sidebar section headingorder: 30 # position (sorted ascending, globally)---Subfolders are fine and become part of the URL (docs/customization/theming.md → /docs/customization/theming).
MDX
Use the .mdx extension when you need components. Callout and Tabs are pre-wired in all three collections — no imports needed:
<Callout type="warning">Careful with this one.</Callout>Drafts
Every collection supports draft: true. Drafts build locally (so you can preview them) and are excluded from production builds, the sitemap, search, and RSS.