import { ghPagesBasePath, html, type Html } from "@mastrojs/mastro"; import { Header } from "./Header.ts"; import { Footer } from "./Footer.ts"; export const basePath = ghPagesBasePath(); interface Props { title?: string; children: Html; } export const Layout = (props: Props) => html`