Files
ebook/pages/email.vue
koziavin 925b6197f2
All checks were successful
Deploy Nuxt App / deploy (push) Successful in 3m59s
add. Closes #8
2025-06-22 08:53:02 +04:00

20 lines
515 B
Vue

<template>
<div class="relative z-50 text-black min-h-screen py-12">
<div class="container mx-auto px-4">
<div class="text-center mb-8">
<UiHeading tag="h1" size="500" class="font-bold text-primary mb-4"
>Контактные данные</UiHeading
>
</div>
<EmailForm />
</div>
</div>
</template>
<script setup>
import UiHeading from '~/components/Typography/UiHeading.vue'
// Страница использует компонент EmailForm
</script>