← Blog
·1 min read

Getting Started (you can delete this post)

This is a starter post so you can see how the blog renders. Delete it once you've written your first real post.

How to publish a post

  1. Create a new file in content/blog/ named after the URL you want, e.g. my-first-deal.md becomes /blog/my-first-deal.
  2. Add the frontmatter block at the top (between the --- lines): a title, date, and excerpt are all you need.
  3. Write the body in Markdown below it.
  4. Commit and push to GitHub. Vercel builds and publishes it automatically.

Set draft: true in the frontmatter to keep a post saved but unpublished.

Formatting you can use

Regular paragraphs just work. You can bold, italicize, and link out.

Lists

  • Bullet points
  • Like this
  1. Or numbered
  2. Steps

Quotes and images

Pull a quote out like this when it matters.

Drop an image by putting the file in public/blog/ and referencing it:

![Alt text](/blog/your-image.jpg)

Bigger headings

Use ## for section headings and ### for subsections. The page title comes from the frontmatter, so start your body at ##.

That's everything. Duplicate this file, clear it out, and write.