FMHYedit/.vitepress/hooks/Template.vue

19 lines
807 B
Vue
Raw Normal View History

2023-11-06 21:22:33 +05:30
<script setup lang="ts">
2023-11-06 21:46:23 +05:30
defineProps<{ title: string; description?: string }>();
2023-11-06 21:22:33 +05:30
</script>
<template>
2023-11-06 21:53:07 +05:30
<div tw="w-full h-full bg-black flex flex-col" style="background-image: url(https://files.catbox.moe/1f84dy.png)">
2023-11-06 21:22:33 +05:30
<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">
2023-11-06 21:53:07 +05:30
<div tw="text-zinc-100 ml-2 mt-1 font-semibold">freemediaheckyeah</div>
2023-11-06 21:22:33 +05:30
</div>
<div tw="w-full pr-56 flex flex-col items-start justify-end">
<div tw="text-6xl font-bold text-stone-200" v-html="title" />
2023-11-06 21:53:07 +05:30
<div tw="mt-2 text-4xl text-neutral-400" v-html="description" />
2023-11-06 21:22:33 +05:30
</div>
</div>
<div tw="shrink-0 h-4 w-full flex" style="background-color: #7bc5e4" />
</div>
</template>