Hello, world
2025-12-29
Bootstrapping this site with Next.js + MDX.
Welcome to the blog.
Why MDX?
MDX lets you write normal Markdown, but also embed React components when you want a demo, chart, or interactable inline.
Code blocks
export function add(a: number, b: number) {
return a + b;
}