treesap
Version:
AI Agent Framework
6 lines • 425 B
JavaScript
import { jsx as _jsx } from "hono/jsx/jsx-runtime";
import Layout from "./Layout.js";
export default async function NotFoundLayout() {
return (_jsx(Layout, { children: _jsx("main", { class: "flex-1 flex flex-col justify-center items-center min-h-screen", children: _jsx("h1", { class: "text-4xl font-bold font-heading leading-tight mb-8", children: "Page not found" }) }) }));
}
//# sourceMappingURL=NotFoundLayout.js.map