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

Recent

{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.

)}
) }