7 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
63c2fda036 Merge version_2 into main
Merge version_2 into main
2026-06-10 15:54:36 +00:00

View File

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