UNPKG

treesap

Version:
9 lines 1.21 kB
import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "hono/jsx/jsx-runtime"; export default function BaseLayout(props) { return (_jsxs(_Fragment, { children: [_jsx("div", { dangerouslySetInnerHTML: { __html: '<!DOCTYPE html>' } }), _jsxs("html", { lang: "en", children: [_jsxs("head", { children: [_jsx("title", { children: props.title || "Treesap" }), _jsx("meta", { name: "description", content: props.description || "A modern web application" }), _jsx("meta", { charset: "UTF-8" }), _jsx("meta", { name: "viewport", content: "width=device-width, initial-scale=1.0, viewport-fit=cover, interactive-widget=resizes-content" }), _jsx("link", { rel: "stylesheet", href: "/styles/main.css" }), _jsx("script", { type: "module", src: "https://sapling-is.land" }), _jsx("style", { dangerouslySetInnerHTML: { __html: ` sapling-island{display:contents} `, } }), _jsx("script", { src: "https://cdn.jsdelivr.net/npm/iconify-icon@2.1.0/dist/iconify-icon.min.js", defer: true }), props.head] }), _jsx("body", { class: "bg-white text-black", children: props.children })] })] })); } //# sourceMappingURL=Layout.js.map