blob: 15d4c90e1525feb98d32c7bfc8ca1a78d29ed36a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
import { Link } from 'waku';
export default async function AboutPage() {
const data = await getData();
return (
<div>
<title>{data.title}</title>
<h1 className="text-4xl font-bold tracking-tight">{data.headline}</h1>
<p>{data.body}</p>
<Link to="/" className="mt-4 inline-block underline">
Return home
</Link>
</div>
);
}
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;
};
|