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