Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 32a7b7ca3e | |||
| 494671eb68 | |||
| 114adf9cfb | |||
| d44a0b50ce |
@@ -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,13 +28,22 @@ export default function LuxuryTravelAgencyTemplatePage() {
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ 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="Откройте для себя самые невероятные уголки мира с нашими эксклюзивными путешествиями класса люкс, разработанными специально для вас."
|
||||
@@ -47,6 +56,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
|
||||
]}
|
||||
showDimOverlay={true}
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
className="pt-40"
|
||||
heading={[
|
||||
@@ -61,6 +72,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<div id="services" data-section="services">
|
||||
<FeatureCardOne
|
||||
tag="Услуги"
|
||||
tagIcon={Sparkles}
|
||||
@@ -89,6 +102,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="how-it-works" data-section="how-it-works">
|
||||
<FeatureCardNine
|
||||
tag="Как Мы Работаем"
|
||||
tagIcon={Compass}
|
||||
@@ -113,6 +128,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="destinations" data-section="destinations">
|
||||
<FeatureCardMedia
|
||||
tag="Направления"
|
||||
tagIcon={Plane}
|
||||
@@ -142,6 +159,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
tag="Отзывы"
|
||||
tagIcon={Sparkles}
|
||||
@@ -161,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>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user