import { getPosts } from '@/lib/posts' import { PostSearch } from '@/components/blog/PostSearch' export const metadata = { title: 'Posts' } export default async function PostsPage() { const posts = await getPosts() return (

Archive

Posts

Browse every essay, note, and experiment in one place. Search and tag filters stay local and fast.

{posts.length > 0 ? ( ) : (

No posts yet

The archive is empty.

Publish an MDX post to populate this list and enable archive search.

)}
) }