Files
tp/main_dc/yalarba/easySite/app/pages/vacations/index.vue
T
valitovgaziz 2941b14b38 flatten easySite directory: remove extra easySite/easySite nesting
- Moved contents of main_dc/yalarba/easySite/easySite/ up to easySite/
- Updated docker-compose.yml build context path
- Deleted empty nested easySite/ directory
2026-06-12 11:16:15 +05:00

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>