{post.meta.title}
{post.meta.date}
import { notFound } from "next/navigation"; import { TopBar, BackLink, InfoLink } from "../../../../components/shell/TopBar"; import { getPostBySlug } from "../../../../lib/posts"; type PageProps = { params: Promise<{ slug: string; }>; }; export default async function BlogPostPage({ params }: PageProps) { const { slug } = await params; const post = getPostBySlug(slug); if (!post) return notFound(); return (
{post.meta.date}