import type { FC, PropsWithChildren } from "hono/jsx"; type Props = PropsWithChildren<{ title?: string; }>; const Layout: FC = ({ children, title }) => { return ( {title || "Cebol"}