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