23 lines
883 B
Vue
23 lines
883 B
Vue
|
<script setup lang="ts">
|
||
|
defineProps<{ title: string; description?: string }>();
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div
|
||
|
tw="w-full h-full bg-black flex flex-col"
|
||
|
style="background-image: url(https://files.catbox.moe/1f84dy.png)">
|
||
|
<div 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">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 tw="shrink-0 h-2 w-full flex" style="background-color: #c4b5fd" />
|
||
|
</div>
|
||
|
</template>
|