This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
class="index-page__hero"
|
||||
>
|
||||
<template #footer>
|
||||
<div class="flex gap-2 place-content-center">
|
||||
<div class="flex gap-2 place-content-center h-[48px]">
|
||||
<UButton
|
||||
size="xl"
|
||||
label="Узанть больше"
|
||||
@@ -36,9 +36,6 @@
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.index-page {
|
||||
display: flex;
|
||||
|
||||
@@ -1,10 +1,111 @@
|
||||
<template>
|
||||
<div class="nedvizhimost-page">
|
||||
<UPageHero
|
||||
title="Недвижимость вашей мечты"
|
||||
:description="`Помогаем найти, купить или продать недвижимость с полным\n юридическим сопровождением и гарантией безопасности сделки.`"
|
||||
class="nedvizhimost-page__hero"
|
||||
>
|
||||
<template #footer>
|
||||
<div class="flex gap-2 place-content-center h-[48px]">
|
||||
<UButton
|
||||
size="xl"
|
||||
label="Смотреть услуги"
|
||||
href="#main-services"
|
||||
/>
|
||||
|
||||
<UButton
|
||||
size="xl"
|
||||
label="Смотреть варианты"
|
||||
href="#variations"
|
||||
color="neutral"
|
||||
variant="subtle"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
</UPageHero>
|
||||
|
||||
<UContainer class="flex flex-col gap-32 mt-32">
|
||||
<MainServices :services="services" />
|
||||
|
||||
<MainCarusel />
|
||||
|
||||
<Contacts />
|
||||
</UContainer>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
const services = [
|
||||
{
|
||||
icon: 'i-lucide:home',
|
||||
title: 'Аренда жилой недвижимости',
|
||||
description:
|
||||
'Подбираем квартиры, дома и апартаменты для краткосрочной и долгосрочной аренды',
|
||||
items: [
|
||||
{ title: 'Проверка юридической чистоты' },
|
||||
{ title: 'Согласование условий договора' },
|
||||
{ title: 'Сопровождение сделки' },
|
||||
{ title: 'Помощь с переездом' },
|
||||
],
|
||||
},
|
||||
{
|
||||
icon: 'i-lucide:shopping-bag',
|
||||
title: 'Покупка недвижимости',
|
||||
description:
|
||||
'Полное сопровождение процесса покупки от поиска до получения ключей',
|
||||
items: [
|
||||
{ title: 'Анализ рынка и оценка' },
|
||||
{ title: 'Проверка документов' },
|
||||
{ title: 'Согласование ипотеки' },
|
||||
{ title: 'Регистрация сделки' },
|
||||
],
|
||||
},
|
||||
{
|
||||
icon: 'i-lucide:package',
|
||||
title: 'Продажа недвижимости',
|
||||
description:
|
||||
'Профессиональная подготовка и продажа вашей недвижимости',
|
||||
items: [
|
||||
{ title: 'Оценка и фотосъёмка' },
|
||||
{ title: 'Маркетинг и реклама' },
|
||||
{ title: 'Показы объекта' },
|
||||
{ title: 'Юридическое оформление' },
|
||||
],
|
||||
},
|
||||
{
|
||||
icon: 'i-lucide:building',
|
||||
title: 'Коммерческая недвижимость',
|
||||
description:
|
||||
'Работа с офисами, торговыми и складскими помещениями',
|
||||
items: [
|
||||
{ title: 'Аренда офисов' },
|
||||
{ title: 'Покупка коммерческих объектов' },
|
||||
{ title: 'Инвестиционные проекты' },
|
||||
{ title: 'Due diligence' },
|
||||
],
|
||||
},
|
||||
]
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
<style lang="scss">
|
||||
.nedvizhimost-page {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
&__hero {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
|
||||
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/nedvizhimost.webp');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,10 +1,107 @@
|
||||
<template>
|
||||
<div class="transport-page">
|
||||
<UPageHero
|
||||
title="Премиум автомобили под ключ"
|
||||
:description="`Аренда, покупка и продажа автомобилей премиум-класса с полным\n сервисным сопровождением и гарантией качества.`"
|
||||
class="transport-page__hero"
|
||||
>
|
||||
<template #footer>
|
||||
<div class="flex gap-2 place-content-center h-[48px]">
|
||||
<UButton
|
||||
size="xl"
|
||||
label="Смотреть услуги"
|
||||
href="#main-services"
|
||||
/>
|
||||
|
||||
<UButton
|
||||
size="xl"
|
||||
label="Смотреть варианты"
|
||||
href="#variations"
|
||||
color="neutral"
|
||||
variant="subtle"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
</UPageHero>
|
||||
|
||||
<UContainer class="flex flex-col gap-32 mt-32">
|
||||
<MainServices :services="services" />
|
||||
|
||||
<MainCarusel />
|
||||
|
||||
<Contacts />
|
||||
</UContainer>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
|
||||
const services = [
|
||||
{
|
||||
icon: 'i-lucide:home',
|
||||
title: 'Краткосрочная аренда',
|
||||
description: 'Подбор автомобиля для поездок по городу или путешествий',
|
||||
items: [
|
||||
{ title: 'Автомобили премиум-класса' },
|
||||
{ title: 'Доставка к вашему адресу' },
|
||||
{ title: 'Страховка включена' },
|
||||
{ title: 'Помощь на дороге 24/7' },
|
||||
],
|
||||
},
|
||||
{
|
||||
icon: 'i-lucide:shopping-bag',
|
||||
title: 'Долгосрочная аренда',
|
||||
description: 'Аренда автомобиля на длительный срок с выгодными условиями',
|
||||
items: [
|
||||
{ title: 'Гибкие сроки аренды' },
|
||||
{ title: 'Техобслуживание включено' },
|
||||
{ title: 'Замена автомобиля' },
|
||||
{ title: 'Индивидуальные условия' },
|
||||
],
|
||||
},
|
||||
{
|
||||
icon: 'i-lucide:package',
|
||||
title: 'Покупка автомобиля',
|
||||
description: 'Полное сопровождение при покупке нового или подержанного авто',
|
||||
items: [
|
||||
{ title: 'Подбор по параметрам' },
|
||||
{ title: 'Техническая экспертиза' },
|
||||
{ title: 'Проверка юридической чистоты' },
|
||||
{ title: 'Оформление документов' },
|
||||
],
|
||||
},
|
||||
{
|
||||
icon: 'i-lucide:building',
|
||||
title: 'Продажа автомобиля',
|
||||
description: 'Быстрая и выгодная продажа вашего автомобиля',
|
||||
items: [
|
||||
{ title: 'Оценка рыночной стоимости' },
|
||||
{ title: 'Профессиональная фотосъемка' },
|
||||
{ title: 'Размещение на площадках' },
|
||||
{ title: 'Безопасное проведение сделки' },
|
||||
],
|
||||
},
|
||||
]
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
<style lang="scss">
|
||||
.transport-page {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
&__hero {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
|
||||
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/transport.jpg');
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user