mirror of https://github.com/VERT-sh/VERT.git
Compare commits
1 Commits
c3caf89163
...
27fd45610e
| Author | SHA1 | Date |
|---|---|---|
|
|
27fd45610e |
File diff suppressed because one or more lines are too long
|
After Width: | Height: | Size: 8.2 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 241 KiB |
|
|
@ -1,12 +1,12 @@
|
|||
<script lang="ts">
|
||||
import Panel from "$lib/components/visual/Panel.svelte";
|
||||
import { PiggyBankIcon, CopyIcon, CheckIcon } from "lucide-svelte";
|
||||
import HotMilk from "$lib/assets/hotmilk.svg?component";
|
||||
import { DISCORD_URL } from "$lib/util/consts";
|
||||
import { error } from "$lib/util/logger";
|
||||
import { m } from "$lib/paraglide/messages";
|
||||
import { link, sanitize } from "$lib/store/index.svelte";
|
||||
import { ToastManager } from "$lib/util/toast.svelte";
|
||||
import lily from "$lib/assets/lily.jpeg";
|
||||
|
||||
let copied = false;
|
||||
let timeoutId: NodeJS.Timeout | null = null;
|
||||
|
|
@ -40,26 +40,20 @@
|
|||
<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://eva.pink"
|
||||
href="https://hotmilk.studio"
|
||||
target="_blank"
|
||||
class="w-48 h-24 rounded-2xl px-0 btn gap-2 flex flex-col justify-center items-center"
|
||||
class="w-fit h-fit rounded-2xl py-4 btn gap-2 flex flex-col justify-center items-center"
|
||||
>
|
||||
<img
|
||||
src={lily}
|
||||
alt="Eva"
|
||||
class="w-full h-full select-none object-cover"
|
||||
/>
|
||||
<HotMilk class="w-full h-16" />
|
||||
</a>
|
||||
</div>
|
||||
<p class="text-muted">
|
||||
{@html sanitize(
|
||||
link(
|
||||
"discord_link",
|
||||
m["about.sponsors.description"](),
|
||||
DISCORD_URL,
|
||||
true,
|
||||
),
|
||||
)}
|
||||
{@html sanitize(link(
|
||||
"discord_link",
|
||||
m["about.sponsors.description"](),
|
||||
DISCORD_URL,
|
||||
true
|
||||
))}
|
||||
<span class="inline-block mx-[2px] relative top-[2px]">
|
||||
<button
|
||||
id="email"
|
||||
|
|
|
|||
Loading…
Reference in New Issue