2941b14b38
- Moved contents of main_dc/yalarba/easySite/easySite/ up to easySite/ - Updated docker-compose.yml build context path - Deleted empty nested easySite/ directory
31 lines
711 B
Vue
31 lines
711 B
Vue
<!-- pages/privacy.vue -->
|
|
<template>
|
|
<div>
|
|
|
|
<Header />
|
|
<PolacyPrivacy />
|
|
<Footer />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
// Импортируем компонент
|
|
import Header from '~/components/layout/Header.vue'
|
|
import Footer from '~/components/layout/Footer.vue'
|
|
import PolacyPrivacy from '@/components/layout/PrivacyPolacy.vue'
|
|
|
|
// SEO мета-теги
|
|
useSeoMeta({
|
|
title: 'Политика конфиденциальности - ЯЛ АРБА',
|
|
description: 'Политика конфиденциальности сервисов экосистемы ЯЛ АРБА'
|
|
})
|
|
</script>
|
|
|
|
<style>
|
|
a:hover,
|
|
a:visited,
|
|
a:focus {
|
|
text-decoration: none;
|
|
color: var(--text-primary)
|
|
}
|
|
</style> |