new file: main_dc/yalarba/easySite/easySite/app/components/layout/Careers.vue

modified:   main_dc/yalarba/easySite/easySite/app/components/layout/Footer.vue
	modified:   main_dc/yalarba/easySite/easySite/app/pages/about/index.vue
	new file:   main_dc/yalarba/easySite/easySite/app/pages/vacations/index.vue
add careers page and link from footer to career
This commit is contained in:
2025-11-01 02:34:41 +05:00
parent 018e81f6a1
commit 0b53761192
4 changed files with 1299 additions and 5 deletions
File diff suppressed because it is too large Load Diff
@@ -8,12 +8,12 @@
<div class="footer-section">
<div class="footer-logo">
<div class="logo-icon">
<span class="logo-text">T</span>
<span class="logo-text">ES</span>
</div>
<span class="logo-name">TravelEasy</span>
<span class="logo-name">EasySite</span>
</div>
<p class="footer-description">
Платформа для агрегации туристических объектов и создания маршрутов путешествий.
Платформа для агрегации туристических объектов.
</p>
<div class="social-links">
<a href="https://vk.com/club222248484" target="_blank" class="social-link" aria-label="ВКонтакте">
@@ -78,7 +78,7 @@
<div class="footer-section">
<h3 class="footer-title">Карьера</h3>
<div class="footer-links">
<a href="#" class="footer-link">💼 Открытые вакансии</a>
<NuxtLink to="/vacations" class="footer-link">Открытые вакансии</NuxtLink>
<a href="#" class="footer-link">👥 Стать партнером</a>
<nuxt-link class="footer-link" href="/about">🏢 О компании</nuxt-link>
<a href="#" class="footer-link">📰 Новости</a>
@@ -99,7 +99,7 @@
<div class="member-avatar">
<span class="avatar-icon">👨💻</span>
</div>
<h3 class="member-name">Валитов Газиз</h3>
<h3 class="member-name"><a href="https://valitovgaziz.ru" target="_blank">Валитов Газиз</a></h3>
<p class="member-role">Основатель & Fullstack-разработчик</p>
<p class="member-bio">
С 2022 года изучаю технологии и создаю решения.
@@ -0,0 +1,31 @@
<!-- pages/privacy.vue -->
<template>
<div>
<Header />
<Vacations />
<Footer />
</div>
</template>
<script setup>
// Импортируем компонент
import Header from '~/components/layout/Header.vue'
import Footer from '~/components/layout/Footer.vue'
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>