40 lines
1.1 KiB
TypeScript
40 lines
1.1 KiB
TypeScript
import { PageProps } from "$fresh/server.ts";
|
|
import { resources } from "@lib/resources.ts";
|
|
import { CSS, KATEX_CSS } from "gfm";
|
|
import { Head } from "$fresh/runtime.ts";
|
|
import { Emoji } from "@components/Emoji.tsx";
|
|
|
|
export default function MyLayout({ Component }: PageProps) {
|
|
return (
|
|
<div
|
|
class="md:grid mx-auto"
|
|
style={{ gridTemplateColumns: "200px 1fr", maxWidth: "1024px" }}
|
|
>
|
|
<Head>
|
|
<style>{CSS}</style>
|
|
<style>{KATEX_CSS}</style>
|
|
</Head>
|
|
<aside class="p-4 hidden md:block">
|
|
<nav class="min-h-fit rounded-3xl p-3 grid gap-3 fixed t-0">
|
|
{Object.values(resources).map((m) => {
|
|
return (
|
|
<a
|
|
href={m.link}
|
|
class={`flex items-center gap-2 text-white data-[current]:bg-white data-[current]:text-black p-3 text-xl w-full rounded-2xl`}
|
|
>
|
|
{<Emoji class="w-6 h-6" name={m.emoji} />} {m.name}
|
|
</a>
|
|
);
|
|
})}
|
|
</nav>
|
|
</aside>
|
|
<main
|
|
class="py-5"
|
|
style={{ fontFamily: "Work Sans" }}
|
|
>
|
|
<Component />
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|