import { PageProps } from "$fresh/server.ts"; import { Partial } from "$fresh/runtime.ts"; import { useEffect } from "preact/hooks"; export default function App({ Component }: PageProps) { const globalCss = Deno .readTextFileSync("./static/global.css") .replaceAll("\n", ""); return (