6 Commits

Author SHA1 Message Date
32a7b7ca3e Update src/app/page.tsx 2026-06-10 16:11:10 +00:00
494671eb68 Update src/app/page.tsx 2026-06-10 16:10:07 +00:00
114adf9cfb Merge version_4 into main
Merge version_4 into main
2026-06-10 16:08:18 +00:00
1fe506ab73 Update src/app/page.tsx 2026-06-10 16:08:14 +00:00
d44a0b50ce Merge version_4 into main
Merge version_4 into main
2026-06-10 16:07:33 +00:00
bc6a3b28f8 Update src/app/page.tsx 2026-06-10 16:07:30 +00:00

View File

@@ -7,11 +7,11 @@ import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import FooterCard from "@/components/sections/footer/FooterCard";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Sparkles, Plane, Compass, Instagram, Facebook, Linkedin } from "lucide-react";
import { Sparkles, Plane, Compass } from "lucide-react";
export default function LuxuryTravelAgencyTemplatePage() {
return (
@@ -28,24 +28,26 @@ export default function LuxuryTravelAgencyTemplatePage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "О нас", id: "about" },
{ name: "Услуги", id: "services" },
{ name: "Направления", id: "destinations" },
{ name: "Отзывы", id: "reviews" },
{ name: "Контакты", id: "contact" }
{ name: "Главная", id: "/" },
{ name: "О нас", id: "#about" },
{ name: "Услуги", id: "#services" },
{ name: "Как Мы Работаем", id: "#how-it-works" },
{ name: "Направления", id: "#destinations" },
{ name: "Отзывы", id: "#testimonials" },
{ name: "Контакты", id: "#contact" }
]}
brandName="Malik Travel"
button={{ text: "Спланировать Путешествие", href: "#contact" }}
button={{ text: "Связаться с нами", href: "#contact" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroCarouselLogo
logoText="Malik Travel"
description="Откройте для себя самые невероятные уголки мира с нашими эксклюзивными путешествиями класса люкс, разработанными специально для вас."
buttons={[
{ text: "Спланируйте Свое Путешествие", href: "#contact" },
{ text: "Исследуйте Направления", href: "#destinations" }
]}
buttons={[]}
slides={[
{ imageSrc: "http://img.b2bpic.net/free-photo/outdoor-swimming-pool_1203-2680.jpg", imageAlt: "Роскошный курорт" },
{ imageSrc: "http://img.b2bpic.net/free-photo/view-boat-water_23-2150785340.jpg", imageAlt: "Частная яхта" },
@@ -54,6 +56,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
]}
showDimOverlay={true}
/>
</div>
<div id="about" data-section="about">
<InlineImageSplitTextAbout
className="pt-40"
heading={[
@@ -68,6 +72,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
]}
useInvertedBackground={false}
/>
</div>
<div id="services" data-section="services">
<FeatureCardOne
tag="Услуги"
tagIcon={Sparkles}
@@ -96,6 +102,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
}
]}
/>
</div>
<div id="how-it-works" data-section="how-it-works">
<FeatureCardNine
tag="Как Мы Работаем"
tagIcon={Compass}
@@ -120,6 +128,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
}
]}
/>
</div>
<div id="destinations" data-section="destinations">
<FeatureCardMedia
tag="Направления"
tagIcon={Plane}
@@ -149,6 +159,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
}
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
tag="Отзывы"
tagIcon={Sparkles}
@@ -168,34 +180,15 @@ export default function LuxuryTravelAgencyTemplatePage() {
}
]}
/>
<ContactSplitForm
title="Спланируйте Свое Путешествие"
description="Позвольте нам создать ваше идеальное роскошное путешествие."
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/man-works-home-high-quality-photo_72229-932.jpg"
imageAlt="Роскошное путешествие"
mediaPosition="right"
mediaAnimation="slide-up"
buttonText="Начать Планирование"
inputs={[
{ name: "name", type: "text", placeholder: "Полное Имя", required: true },
{ name: "email", type: "email", placeholder: "Адрес Электронной Почты", required: true },
{ name: "phone", type: "tel", placeholder: "Номер Телефона" },
{ name: "destination", type: "text", placeholder: "Направление Мечты" }
]}
textarea={{
name: "message", placeholder: "Расскажите нам о вашем идеальном путешествии...", rows: 4
}}
/>
</div>
<div id="footer" data-section="footer">
<FooterCard
logoText="Malik Travel"
copyrightText="© 2025 Malik Travel | Роскошные Путешествия по Миру"
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" }
]}
socialLinks={[]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);