this repo has no description
1---
2import SiteLayout from "../components/SiteLayout.astro";
3import { getEntry } from "astro:content";
4
5const entry = await getEntry("about", "open-source");
6if (!entry) {
7 throw new Error("Could not find ../content/about/open-source.mdx");
8}
9const { Content } = await entry.render();
10---
11
12<SiteLayout title="zeu.dev">
13 <main class="flex flex-col gap-4 px-4 py-8 text-white text-lg">
14 <h1 class="text-5xl text-yellow-500 font-bold">Open Source</h1>
15 <p class="text-yellow-500">
16 Explorations, packages, and sites.
17 </p>
18
19 <span class="prose prose-invert prose-yellow lg:prose-xl prose-headings:text-yellow-500">
20 <Content />
21 </span>
22 </main>
23</SiteLayout>