21 lines
646 B
Vue
21 lines
646 B
Vue
<script lang="ts" setup></script>
|
|
|
|
<template>
|
|
<div class="container mb-20 lg:mb-40 max-lg:mt-30">
|
|
<div class="flex flex-col items-center gap-3 mb-10 lg:mb-16 typo-h-6 md:typo-h-5 lg:typo-h-3 text-black">
|
|
منتظر یک اتفاق جذاب باشید...
|
|
</div>
|
|
<div class="overflow-hidden rounded-3xl w-full bg-neutral-200">
|
|
<video
|
|
src="/video/curtain-blue.webm"
|
|
class="w-full"
|
|
autoplay
|
|
muted
|
|
loop
|
|
playsinline
|
|
webkit-playsinline
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|