37 lines
1.2 KiB
Vue
37 lines
1.2 KiB
Vue
<script setup>
|
|
import { Head } from '@inertiajs/vue3';
|
|
import LegalDocument from '../../Components/LegalDocument.vue';
|
|
import PortalLayout from '../../Layouts/PortalLayout.vue';
|
|
import {
|
|
offerEffectiveDate,
|
|
offerIntro,
|
|
offerSections,
|
|
offerSubtitle,
|
|
} from './offerContent';
|
|
|
|
defineProps({
|
|
site: { type: Object, required: true },
|
|
auth: { type: Object, required: true },
|
|
urls: { type: Object, required: true },
|
|
legal: { type: Object, required: true },
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<Head>
|
|
<title>Публичная оферта — {{ site.name }}</title>
|
|
<meta name="description" content="Публичная оферта о заключении договора возмездного оказания цифровых услуг MoonWell." />
|
|
</Head>
|
|
|
|
<PortalLayout :site="site" :auth="auth" :urls="urls">
|
|
<LegalDocument
|
|
eyebrow="Юридическая информация"
|
|
title="Публичная оферта"
|
|
:description="offerSubtitle"
|
|
:effective-date="offerEffectiveDate"
|
|
:intro="offerIntro"
|
|
:sections="offerSections"
|
|
/>
|
|
</PortalLayout>
|
|
</template>
|