import { html, LayoutFunction } from '@lib/html'; // this is the layout for the entire site const _layout: LayoutFunction = ({ children }) => { const title = 'Cloudflare Pages + HTMX + Hyperscript'; return html` ${title} ${children}
`; }; export default _layout;