chore: bump deps

This commit is contained in:
taskylizard 2024-07-20 11:17:20 +00:00
parent 3efa583973
commit 93ff071527
No known key found for this signature in database
GPG key ID: 1820131ED1A24120
4 changed files with 431 additions and 343 deletions

View file

@ -3,7 +3,7 @@ defineProps<{ title: string; description?: string }>()
</script>
<template>
<div
<span
tw="w-full h-full bg-black flex flex-col"
style="
background-image: linear-gradient(
@ -24,20 +24,20 @@ defineProps<{ title: string; description?: string }>()
);
"
>
<div
<span
tw="p-10 w-full min-h-0 grow flex flex-col items-center justify-between"
>
<div tw="w-full flex justify-between items-center text-5xl font-medium">
<div tw="flex items-center">
<div tw="text-zinc-100 ml-2 mt-1 font-semibold">
<span tw="w-full flex justify-between items-center text-5xl font-medium">
<span tw="flex items-center">
<span tw="text-zinc-100 ml-2 mt-1 font-semibold">
freemediaheckyeah
</div>
</div>
</div>
<div tw="w-full pr-56 flex flex-col items-start justify-end">
<div style="color: #f3f4f6" tw="text-6xl font-bold" v-html="title" />
<div style="color: #c0caf5" tw="mt-2 text-4xl" v-html="description" />
</div>
</div>
</div>
</span>
</span>
</span>
<span tw="w-full pr-56 flex flex-col items-start justify-end">
<span style="color: #f3f4f6" tw="text-6xl font-bold" v-html="title" />
<span style="color: #c0caf5" tw="mt-2 text-4xl" v-html="description" />
</span>
</span>
</span>
</template>