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={} />

BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG · BLOG

BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG BLOG · BLOG · BLOG · BLOG

Thoughts, experiments and notes from the Voyage universe.

Thoughts, experiments and notes from the Voyage universe.

{/*blog section*/}
{posts.map((p) => (
{p.meta.title}
{p.meta.date}

{p.meta.title}

{p.meta.excerpt && (

{p.meta.excerpt}

)}
))}
); }