Welcome to the blog

This is your first post — replace it or delete it whenever you're ready.

How to publish

Every file in src/content/blog/ becomes a post. Add a new .md file with frontmatter like this:

---
title: "Your post title"
date: "2026-08-22"
excerpt: "One sentence for the blog index card."
coverImage: "/blog/your-image.jpg"
coverImageAlt: "Describe the image"
tags: ["product", "ai"]
---

Your post content starts here.

Drop cover images into public/blog/ and reference them by path (e.g. /blog/your-image.jpg). coverImage, coverImageAlt, and tags are all optional — a post without a cover image just skips the hero image.

What you can write

Standard markdown, so:

Sub-headings

Use ## and ### for section breaks.

Bold, italic, links, and:

  • bullet lists
  • numbered lists
  • blockquotes

like this one

and images inline:

![Alt text](/blog/photo.jpg)

Commit the new file and push — the next deploy publishes it at /blog/your-post-slug (the slug is the filename).