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

blog

A sleek static blog with code and math.

Latest Posts

) }