docs: 💸 Add Fastly sponsorship info
Some checks failed
Check Types / tests (push) Failing after 6s
CodeQL / Analyze (javascript) (push) Failing after 6s
Lint & Format / tests (push) Failing after 5s
Mirror to Codeberg / Mirror (push) Failing after 1s

This commit is contained in:
Jesse Wierzbinski 2025-02-15 15:49:52 +01:00
parent c6796ecb4e
commit c7b22698bf
No known key found for this signature in database
2 changed files with 27 additions and 0 deletions

View file

@ -2,7 +2,9 @@ import { Guide } from "@/components/Guides";
import { Resource, type ResourceType } from "@/components/Resources";
import { TeamMember } from "@/components/Team";
import { wrapper } from "@/components/mdx";
import fastlyLogo from "@/images/logos/fastly.svg";
import type { Metadata } from "next";
import Image from "next/image";
import type { FC } from "react";
export const metadata: Metadata = {
@ -247,6 +249,30 @@ const Page: FC = () => {
]}
/>
</div>
<h2 id="team">Thanks</h2>
<p className="lead">
Thanks to{" "}
<a
href="https://fastly.com"
target="_blank"
rel="noopener noreferrer"
>
Fastly
</a>{" "}
for supporting us with their resources!
</p>
<p>
<Image
src={fastlyLogo}
alt="Fastly logo"
height={144}
className="p-10 rounded border border-zinc-900/10 dark:border-white/10"
unoptimized={true}
/>
</p>
</>
),
});