import { Link } from 'waku';
export default async function AboutPage() {
const data = await getData();
return (
{data.title}
{data.headline}
{data.body}
Return home
);
}
const getData = async () => {
const data = {
title: 'About',
headline: 'About Waku',
body: 'The minimal React framework',
};
return data;
};
export const getConfig = async () => {
return {
render: 'static',
} as const;
};