import { Link } from "waku"; import { listObsidian } from "../lib/categorization"; export default async function AboutPage() { const data = await getData(); return (
{data.title}

{data.headline}

{data.body}

Return home
); } const getData = async () => { const obsidian = await listObsidian(); const data = { title: "About", headline: "About Waku", body: "The minimal React framework", }; return data; }; export const getConfig = async () => { return { render: "static", } as const; };