import "hono/jsx" import { raw } from "hono/html" type LayoutProps = { title: string children: any showHomeLink?: boolean } export const Layout = ({ title, children, showHomeLink = true }: LayoutProps) => { return ( {title} - Howl UI
{showHomeLink && ( 🏠 )} {title}
{children} ) }