Hello, world

Welcome to the blog. Posts here are written in MDX with frontmatter, which means you get the full power of Markdown plus the option to drop in real components whenever prose alone won’t cut it.

Every post lives under src/content/posts/ in a YYYY/MM/ folder, so files for posts published in June 2026 live at src/content/posts/2026/06/. The filename is the slug and becomes part of the post’s URL (e.g. hello-world.mdx -> /blog/2026/06/hello-world). Each file starts with a frontmatter block like this:

---
title: My post
description: A short summary used for previews and meta tags.
pubDate: 2026-06-12
tags: [meta, astro]
draft: false
---

The pubDate field drives sorting on the blog index, and tags show up as little pills on each post. If you set draft: true the post will only render in development — handy for unfinished ideas.

Happy writing.