import { type ComponentChildren } from "preact"; const Layout = ({ children, head, title = "TANGLED://SEARCH_v1.3.1", }: { children: ComponentChildren; head?: ComponentChildren; title?: string; }) => ( {title} {head}
{children} ); export default Layout;