This is the first post for the blog.

The goal is to keep the writing experience simple: write Markdown, commit it, and let Next.js generate static pages.

Why Markdown

Markdown keeps the editing workflow close to the content. It is easy to read in a text editor and works well with Git history.

type Post = {
  title: string;
  createdAt: string;
  modifiedAt: string;
  isDraft: boolean;
};

The initial blog intentionally avoids tags, MDX, and extra metadata so the core reading experience stays small.