Peery
All writing

Hello World

April 1, 2026Peery

Welcome to my new blog built with Next.js, Tailwind CSS, and Markdown.

Hello World

Welcome to my blog! This post is written in Markdown and lives in the /content directory.

What's powering this?

  • Next.js App Router
  • Tailwind CSS for styling
  • gray-matter for frontmatter parsing
  • remark for Markdown → HTML conversion

Adding new posts

Just drop a new .md file into the /content folder with this frontmatter:

---
title: "My Post Title"
date: "2026-04-15"
excerpt: "A short description shown on the index page."
author: "Your Name"
---

Your content here...

The slug is derived from the filename — my-new-post.md becomes /blog/my-new-post.