import "hono/jsx" import { raw } from "hono/html" import { Styles } from '@because/forge' import { DarkModeToggle, PageTitle, HomeLink, NavLink, NavList, NavItem, Body, } from "../src/layout" type LayoutProps = { title: string children: any showHomeLink?: boolean } export const Layout = ({ title, children, showHomeLink = true }: LayoutProps) => { return (