import { Link } from "waku"; import { Counter } from "../components/counter"; export default async function HomePage() { const data = await getData(); return (
{data.title}

{data.headline}

{data.body}

About page
); } const getData = async () => { const data = { title: "Waku", headline: "Waku", body: "Hello world!", }; return data; }; export const getConfig = async () => { return { render: "static", } as const; };