Skip to content

Commit 49821e5

Browse files
committed
fix: sponsor
1 parent 438f91a commit 49821e5

3 files changed

Lines changed: 16 additions & 23 deletions

File tree

src/lib/assets/hotmilk.svg

Lines changed: 0 additions & 13 deletions
This file was deleted.

src/lib/assets/lily.jpeg

241 KB
Loading

src/lib/sections/about/Sponsors.svelte

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<script lang="ts">
22
import Panel from "$lib/components/visual/Panel.svelte";
33
import { PiggyBankIcon, CopyIcon, CheckIcon } from "lucide-svelte";
4-
import HotMilk from "$lib/assets/hotmilk.svg?component";
54
import { DISCORD_URL } from "$lib/util/consts";
65
import { error } from "$lib/util/logger";
76
import { m } from "$lib/paraglide/messages";
87
import { link, sanitize } from "$lib/store/index.svelte";
98
import { ToastManager } from "$lib/util/toast.svelte";
9+
import lily from "$lib/assets/lily.jpeg";
1010
1111
let copied = false;
1212
let timeoutId: NodeJS.Timeout | null = null;
@@ -40,20 +40,26 @@
4040
<div class="mt-2 [&>*]:font-normal h-full flex justify-between flex-col">
4141
<div class="flex gap-3 justify-center text-lg">
4242
<a
43-
href="https://hotmilk.studio"
43+
href="https://eva.pink"
4444
target="_blank"
45-
class="w-fit h-fit rounded-2xl py-4 btn gap-2 flex flex-col justify-center items-center"
45+
class="w-48 h-24 rounded-2xl px-0 btn gap-2 flex flex-col justify-center items-center"
4646
>
47-
<HotMilk class="w-full h-16" />
47+
<img
48+
src={lily}
49+
alt="Eva"
50+
class="w-full h-full select-none object-cover"
51+
/>
4852
</a>
4953
</div>
5054
<p class="text-muted">
51-
{@html sanitize(link(
52-
"discord_link",
53-
m["about.sponsors.description"](),
54-
DISCORD_URL,
55-
true
56-
))}
55+
{@html sanitize(
56+
link(
57+
"discord_link",
58+
m["about.sponsors.description"](),
59+
DISCORD_URL,
60+
true,
61+
),
62+
)}
5763
<span class="inline-block mx-[2px] relative top-[2px]">
5864
<button
5965
id="email"

0 commit comments

Comments
 (0)