import { html } from 'hono/html'; export interface SiteData { title: string; children?: any; } export const Layout = (props: SiteData) => html`
Welcome to our Hono application. This page was rendered server-side with JSX.