20 lines
515 B
Vue
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>
|