// This exists because lume doesn't actually add the header when rendering. export const layout = "layouts/doctype.njk"; import type { PageData } from "lume/core.ts"; import Navbar from "../components/navbar.tsx"; export default ({ title, children }: PageData) => ( {title} {/*
{/*
*/}
{children}
);