// I M P O R T import { html } from "hono/html" // U T I L S import config from "../../config.js"; import footer from "./footer.js"; import navigation from "./navigation.js"; // E X P O R T export default children => async (context) => { return html`
${navigation(context.req.url)} ${await children(context)} ${footer(context)}
`; };