feat: add sponsors

This commit is contained in:
not-nullptr 2025-02-13 22:17:01 +00:00
parent c2e9b02fec
commit d46cf4da8f
4 changed files with 49 additions and 0 deletions

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.2 KiB

View File

@ -0,0 +1,34 @@
<script lang="ts">
import Panel from "$lib/components/visual/Panel.svelte";
import { PiggyBankIcon } from "lucide-svelte";
import HotMilk from "$lib/assets/hotmilk.svg?component";
import { DISCORD_URL } from "$lib/consts";
</script>
<Panel class="flex flex-col gap-3 p-6 min-h-[280px]">
<h2 class="text-2xl font-bold flex items-center">
<div
class="rounded-full bg-accent-pink p-2 inline-block mr-3 w-10 h-10"
>
<PiggyBankIcon color="black" />
</div>
Sponsors
</h2>
<div class="mt-2 [&>*]:font-normal h-full flex justify-between flex-col">
<div class="flex gap-3 justify-center text-lg">
<a
href="https://hotmilk.studio"
target="_blank"
class="w-fit h-fit rounded-2xl py-4 btn gap-2 flex flex-col justify-center items-center"
>
<HotMilk class="w-full h-16" />
</a>
</div>
<p class="text-muted">
Want to support us? Contact a developer in the <a
href={DISCORD_URL}
target="_blank">Discord</a
> server!
</p>
</div>
</Panel>

View File

@ -2,3 +2,4 @@ export { default as Credits } from "./Credits.svelte";
export { default as Donate } from "./Donate.svelte";
export { default as Resources } from "./Resources.svelte";
export { default as Why } from "./Why.svelte";
export { default as Vertd } from "./Vertd.svelte";

View File

@ -119,6 +119,7 @@
<!-- Why VERT? & Credits -->
<div class="flex flex-col gap-4 flex-1">
<About.Why />
<About.Vertd />
</div>
<!-- Resources & Donate to VERT -->