webzone/src/index.tsx

20 lines
442 B
TypeScript

import { PageData } from "lume/core.ts";
export const title = "Sam Site 2.0";
export const layout = "layouts/head.njk";
export default ({ data }: PageData) => (
<>
<header class="container">
<hgroup>
<h1>{title}</h1>
<h2>Stuff</h2>
</hgroup>
</header>
<main class="container">
<p>There was a website here. There isn't anymore.</p>
<p>There will be, eventually.</p>
</main>
</>
);