import Link from 'next/link' import PostCard from '@/components/blog/PostCard' import { getAllPosts } from '@/app/blog/utils' export const metadata = { title: 'Blog', description: 'Read my blog.', } export default async function Page() { const posts = await getAllPosts() return (
Back home

My Blog

{posts.map((post) => ( ))}
) }