import { getPosts } from '@/lib/posts' import { PostList } from '@/components/blog/PostList' export default async function HomePage() { const posts = await getPosts() return (

Minimal static journal

Quiet notes on design, code, and the web.

A small, fast blog for thoughtful essays, implementation notes, and experiments in readable interfaces.

Latest

Recent writing

Fresh posts appear here as soon as they are published.

{posts.length > 0 ? ( ) : (

No posts yet

The notebook is ready.

Add your first MDX post and it will show up here with the same polished card treatment.

)}
) }