import { PageProps } from "$fresh/server.ts"; import { Head } from "$fresh/runtime.ts"; export default function App({ Component }: PageProps) { const css = Deno.readTextFileSync("./static/global.css").replace("\n", ""); return ( <> ); }