How to add a post
Publishing here takes about thirty seconds. Here's the whole workflow.
1. Create a file
Add a new .md file in src/content/posts/. The file name becomes the URL —
my-idea.md lives at /writing/my-idea.
2. Add the front matter
Every post starts with a small block of metadata between --- lines:
---
title: "The title readers see"
date: "2026-08-20"
description: "One sentence for previews and the RSS feed."
---
3. Write
Everything below the front matter is your post, in Markdown. Save the file and it shows up automatically — sorted by date, newest first.
4. Publish
Commit and push. Vercel builds and deploys it within a minute. Done.