import Link from "next/link"; import { TopBar, BackLink, InfoLink } from "../../../components/shell/TopBar"; import { getAllPosts } from "../../../lib/posts"; export default function BlogIndexPage() { const posts = getAllPosts(); return (
} right={} />
{posts.map((p) => (
{p.meta.date}

{p.meta.title}

{p.meta.excerpt ? (

{p.meta.excerpt}

) : null}
))}
); }