import { ComponentChildren } from "preact"; import { menu } from "@lib/menus.ts"; import { CSS, KATEX_CSS,render } from "https://deno.land/x/gfm/mod.ts"; import { Head } from "$fresh/runtime.ts"; export type Props = { children: ComponentChildren; title?: string; name?: string; url: URL; description?: string; }; export const MainLayout = ({ children, url }: Props) => { return (
{children}
); };