import { BaseLayout } from "../views/layout"; export function homeRoute(): Response { const content = `

Welcome

The Aurora web server is up and running!

`; const html = BaseLayout({ title: "Home", content }); return new Response(html, { headers: { "Content-Type": "text/html" }, }); }