2941b14b38
- Moved contents of main_dc/yalarba/easySite/easySite/ up to easySite/ - Updated docker-compose.yml build context path - Deleted empty nested easySite/ directory
27 lines
482 B
Vue
27 lines
482 B
Vue
<!-- pages/privacy.vue -->
|
|
<template>
|
|
<div>
|
|
|
|
<Vacations />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
// Импортируем компонент
|
|
import Vacations from '~/components/layout/Careers.vue'
|
|
|
|
// SEO мета-теги
|
|
useSeoMeta({
|
|
title: 'Вакансии Ял Арба',
|
|
description: 'Страница вакансий ООО "ИКЦ Ял Арба"'
|
|
})
|
|
</script>
|
|
|
|
<style>
|
|
a:hover,
|
|
a:visited,
|
|
a:focus {
|
|
text-decoration: none;
|
|
color: var(--text-primary)
|
|
}
|
|
</style> |