Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2a16cb2e78 | |||
| 604990114c | |||
| 29943ba71f | |||
| 198067fdbc | |||
| ed5c561360 | |||
| 0aca033eca |
53
src/app/booking/page.tsx
Normal file
53
src/app/booking/page.tsx
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||||
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||||
|
import { Instagram, Facebook, Linkedin } from "lucide-react";
|
||||||
|
|
||||||
|
export default function BookingPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="icon-arrow"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="none"
|
||||||
|
cardStyle="solid"
|
||||||
|
primaryButtonStyle="shadow"
|
||||||
|
secondaryButtonStyle="solid"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Booking", id: "/booking" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
]}
|
||||||
|
brandName="Luxuria"
|
||||||
|
button={{ text: "Plan Your Trip", href: "/booking" }}
|
||||||
|
/>
|
||||||
|
<ContactCenter
|
||||||
|
tag="Booking"
|
||||||
|
title="Book Your Experience"
|
||||||
|
description="Fill out the form below and our team will be in touch shortly to finalize your luxury travel plans."
|
||||||
|
onSubmit={(email) => console.log("Booking email:", email)}
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
<FooterCard
|
||||||
|
logoText="Luxuria"
|
||||||
|
copyrightText="© 2025 Luxuria Travel | Luxury Journeys Worldwide"
|
||||||
|
socialLinks={[
|
||||||
|
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||||
|
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||||
|
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
53
src/app/contact/page.tsx
Normal file
53
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||||
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||||
|
import { Instagram, Facebook, Linkedin } from "lucide-react";
|
||||||
|
|
||||||
|
export default function ContactPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="icon-arrow"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="none"
|
||||||
|
cardStyle="solid"
|
||||||
|
primaryButtonStyle="shadow"
|
||||||
|
secondaryButtonStyle="solid"
|
||||||
|
headingFontWeight="medium"
|
||||||
|
>
|
||||||
|
<NavbarLayoutFloatingInline
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "/about" },
|
||||||
|
{ name: "Services", id: "/services" },
|
||||||
|
{ name: "Booking", id: "/booking" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
|
]}
|
||||||
|
brandName="Luxuria"
|
||||||
|
button={{ text: "Plan Your Trip", href: "/booking" }}
|
||||||
|
/>
|
||||||
|
<ContactCenter
|
||||||
|
tag="Contact"
|
||||||
|
title="Get in Touch"
|
||||||
|
description="We're here to answer any questions you may have about our luxury travel services."
|
||||||
|
onSubmit={(email) => console.log("Contact email:", email)}
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
<FooterCard
|
||||||
|
logoText="Luxuria"
|
||||||
|
copyrightText="© 2025 Luxuria Travel | Luxury Journeys Worldwide"
|
||||||
|
socialLinks={[
|
||||||
|
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||||
|
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||||
|
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
207
src/app/page.tsx
207
src/app/page.tsx
@@ -1,17 +1,16 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
|
|
||||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
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 TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
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, Instagram, Facebook, Linkedin, MessageSquareQuote } from "lucide-react";
|
||||||
|
|
||||||
export default function LuxuryTravelAgencyTemplatePage() {
|
export default function LuxuryTravelAgencyTemplatePage() {
|
||||||
return (
|
return (
|
||||||
@@ -34,25 +33,11 @@ export default function LuxuryTravelAgencyTemplatePage() {
|
|||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "Destinations", id: "destinations" },
|
{ name: "Destinations", id: "destinations" },
|
||||||
{ name: "Reviews", id: "reviews" },
|
{ name: "Reviews", id: "reviews" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Booking", id: "/booking" },
|
||||||
|
{ name: "Contact", id: "/contact" },
|
||||||
]}
|
]}
|
||||||
brandName="Luxuria"
|
brandName="Luxuria"
|
||||||
button={{ text: "Plan Your Trip", href: "#contact" }}
|
button={{ text: "Plan Your Trip", href: "/booking" }}
|
||||||
/>
|
|
||||||
<HeroCarouselLogo
|
|
||||||
logoText="Luxuria"
|
|
||||||
description="Experience the world's most extraordinary destinations with our bespoke luxury travel experiences curated just for you."
|
|
||||||
buttons={[
|
|
||||||
{ text: "Plan Your Journey", href: "#contact" },
|
|
||||||
{ text: "Explore Destinations", href: "#destinations" },
|
|
||||||
]}
|
|
||||||
slides={[
|
|
||||||
{ imageSrc: "/templates/luxury-travel-agency/hero/hero1.webp", imageAlt: "Luxury resort" },
|
|
||||||
{ imageSrc: "/templates/luxury-travel-agency/hero/hero2.webp", imageAlt: "Private yacht" },
|
|
||||||
{ imageSrc: "/templates/luxury-travel-agency/hero/hero3.jpg", imageAlt: "Private yacht" },
|
|
||||||
{ imageSrc: "/templates/luxury-travel-agency/hero/hero4.jpg", imageAlt: "Private yacht" },
|
|
||||||
]}
|
|
||||||
showDimOverlay={true}
|
|
||||||
/>
|
/>
|
||||||
<InlineImageSplitTextAbout
|
<InlineImageSplitTextAbout
|
||||||
className="pt-40"
|
className="pt-40"
|
||||||
@@ -79,36 +64,11 @@ export default function LuxuryTravelAgencyTemplatePage() {
|
|||||||
uniformGridCustomHeightClasses="h-100 2xl:h-110"
|
uniformGridCustomHeightClasses="h-100 2xl:h-110"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{ title: "Private Aviation", description: "Charter flights and private jet services to any destination worldwide.", imageSrc: "/templates/luxury-travel-agency/services/service5.webp", imageAlt: "Private jet" },
|
||||||
title: "Private Aviation",
|
{ title: "Luxury Accommodations", description: "Handpicked five-star hotels, villas, and exclusive resorts.", imageSrc: "/templates/luxury-travel-agency/services/service1.webp", imageAlt: "Luxury hotel" },
|
||||||
description: "Charter flights and private jet services to any destination worldwide.",
|
{ title: "Curated Experiences", description: "Unique adventures and cultural immersions designed just for you.", imageSrc: "/templates/luxury-travel-agency/services/service4.webp", imageAlt: "Experience" },
|
||||||
imageSrc: "/templates/luxury-travel-agency/services/service5.webp",
|
{ title: "Fine Dining", description: "Reservations at Michelin-starred restaurants and private chef services.", imageSrc: "/templates/luxury-travel-agency/services/service3.webp", imageAlt: "Fine dining" },
|
||||||
imageAlt: "Private jet",
|
{ title: "Photography Tours", description: "Professional photographers to capture your once-in-a-lifetime moments.", imageSrc: "/templates/luxury-travel-agency/services/service2.webp", imageAlt: "Photography" }
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Luxury Accommodations",
|
|
||||||
description: "Handpicked five-star hotels, villas, and exclusive resorts.",
|
|
||||||
imageSrc: "/templates/luxury-travel-agency/services/service1.webp",
|
|
||||||
imageAlt: "Luxury hotel",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Curated Experiences",
|
|
||||||
description: "Unique adventures and cultural immersions designed just for you.",
|
|
||||||
imageSrc: "/templates/luxury-travel-agency/services/service4.webp",
|
|
||||||
imageAlt: "Experience",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Fine Dining",
|
|
||||||
description: "Reservations at Michelin-starred restaurants and private chef services.",
|
|
||||||
imageSrc: "/templates/luxury-travel-agency/services/service3.webp",
|
|
||||||
imageAlt: "Fine dining",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Photography Tours",
|
|
||||||
description: "Professional photographers to capture your once-in-a-lifetime moments.",
|
|
||||||
imageSrc: "/templates/luxury-travel-agency/services/service2.webp",
|
|
||||||
imageAlt: "Photography",
|
|
||||||
}
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<FeatureCardNine
|
<FeatureCardNine
|
||||||
@@ -121,27 +81,9 @@ export default function LuxuryTravelAgencyTemplatePage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{ id: 1, title: "Share Your Vision", description: "Tell us about your dream destination and travel preferences.", phoneOne: { imageSrc: "/templates/luxury-travel-agency/phone/phone5.webp", imageAlt: "Consultation" }, phoneTwo: { imageSrc: "/templates/luxury-travel-agency/phone/phone6.webp", imageAlt: "Planning" } },
|
||||||
id: 1,
|
{ id: 2, title: "Custom Itinerary", description: "Receive a bespoke travel plan crafted by our expert advisors.", phoneOne: { imageSrc: "/templates/luxury-travel-agency/phone/phone3.webp", imageAlt: "Itinerary" }, phoneTwo: { imageSrc: "/templates/luxury-travel-agency/phone/phone4.webp", imageAlt: "Details" } },
|
||||||
title: "Share Your Vision",
|
{ id: 3, title: "Seamless Experience", description: "Enjoy your journey while we handle every detail behind the scenes.", phoneOne: { imageSrc: "/templates/luxury-travel-agency/phone/phone1.webp", imageAlt: "Travel" }, phoneTwo: { imageSrc: "/templates/luxury-travel-agency/phone/phone2.webp", imageAlt: "Experience" } },
|
||||||
description: "Tell us about your dream destination and travel preferences.",
|
|
||||||
phoneOne: { imageSrc: "/templates/luxury-travel-agency/phone/phone5.webp", imageAlt: "Consultation" },
|
|
||||||
phoneTwo: { imageSrc: "/templates/luxury-travel-agency/phone/phone6.webp", imageAlt: "Planning" },
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
title: "Custom Itinerary",
|
|
||||||
description: "Receive a bespoke travel plan crafted by our expert advisors.",
|
|
||||||
phoneOne: { imageSrc: "/templates/luxury-travel-agency/phone/phone3.webp", imageAlt: "Itinerary" },
|
|
||||||
phoneTwo: { imageSrc: "/templates/luxury-travel-agency/phone/phone4.webp", imageAlt: "Details" },
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 3,
|
|
||||||
title: "Seamless Experience",
|
|
||||||
description: "Enjoy your journey while we handle every detail behind the scenes.",
|
|
||||||
phoneOne: { imageSrc: "/templates/luxury-travel-agency/phone/phone1.webp", imageAlt: "Travel" },
|
|
||||||
phoneTwo: { imageSrc: "/templates/luxury-travel-agency/phone/phone2.webp", imageAlt: "Experience" },
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<FeatureCardMedia
|
<FeatureCardMedia
|
||||||
@@ -153,123 +95,28 @@ export default function LuxuryTravelAgencyTemplatePage() {
|
|||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{ id: "1", title: "Maldives Private Island", description: "Exclusive overwater villas with direct lagoon access and private butler service.", tag: "Asia", imageSrc: "/templates/luxury-travel-agency/destination/destination6.webp", imageAlt: "Maldives" },
|
||||||
id: "1",
|
{ id: "2", title: "Swiss Alpine Retreat", description: "Secluded mountain chalets with panoramic views and world-class skiing.", tag: "Europe", imageSrc: "/templates/luxury-travel-agency/destination/destination5.webp", imageAlt: "Switzerland" },
|
||||||
title: "Maldives Private Island",
|
{ id: "3", title: "African Safari Lodge", description: "Intimate wildlife encounters in the heart of the Serengeti.", tag: "Africa", imageSrc: "/templates/luxury-travel-agency/destination/destination1.webp", imageAlt: "Safari" },
|
||||||
description: "Exclusive overwater villas with direct lagoon access and private butler service.",
|
{ id: "4", title: "Amalfi Coast Villa", description: "Clifftop estates with Mediterranean views and private beach access.", tag: "Europe", imageSrc: "/templates/luxury-travel-agency/destination/destination4.webp", imageAlt: "Amalfi Coast" },
|
||||||
tag: "Asia",
|
{ id: "5", title: "Kyoto Ryokan", description: "Traditional Japanese inns with zen gardens and kaiseki dining.", tag: "Asia", imageSrc: "/templates/luxury-travel-agency/destination/destination3.webp", imageAlt: "Kyoto" },
|
||||||
imageSrc: "/templates/luxury-travel-agency/destination/destination6.webp",
|
{ id: "6", title: "Patagonia Eco Lodge", description: "Remote wilderness retreats surrounded by glaciers and pristine nature.", tag: "South America", imageSrc: "/templates/luxury-travel-agency/destination/destination2.webp", imageAlt: "Patagonia" },
|
||||||
imageAlt: "Maldives",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
title: "Swiss Alpine Retreat",
|
|
||||||
description: "Secluded mountain chalets with panoramic views and world-class skiing.",
|
|
||||||
tag: "Europe",
|
|
||||||
imageSrc: "/templates/luxury-travel-agency/destination/destination5.webp",
|
|
||||||
imageAlt: "Switzerland",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
title: "African Safari Lodge",
|
|
||||||
description: "Intimate wildlife encounters in the heart of the Serengeti.",
|
|
||||||
tag: "Africa",
|
|
||||||
imageSrc: "/templates/luxury-travel-agency/destination/destination1.webp",
|
|
||||||
imageAlt: "Safari",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "4",
|
|
||||||
title: "Amalfi Coast Villa",
|
|
||||||
description: "Clifftop estates with Mediterranean views and private beach access.",
|
|
||||||
tag: "Europe",
|
|
||||||
imageSrc: "/templates/luxury-travel-agency/destination/destination4.webp",
|
|
||||||
imageAlt: "Amalfi Coast",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "5",
|
|
||||||
title: "Kyoto Ryokan",
|
|
||||||
description: "Traditional Japanese inns with zen gardens and kaiseki dining.",
|
|
||||||
tag: "Asia",
|
|
||||||
imageSrc: "/templates/luxury-travel-agency/destination/destination3.webp",
|
|
||||||
imageAlt: "Kyoto",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "6",
|
|
||||||
title: "Patagonia Eco Lodge",
|
|
||||||
description: "Remote wilderness retreats surrounded by glaciers and pristine nature.",
|
|
||||||
tag: "South America",
|
|
||||||
imageSrc: "/templates/luxury-travel-agency/destination/destination2.webp",
|
|
||||||
imageAlt: "Patagonia",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<TestimonialCardFive
|
<TestimonialCardTwo
|
||||||
tag="Reviews"
|
tag="Reviews"
|
||||||
tagIcon={Sparkles}
|
tagIcon={MessageSquareQuote}
|
||||||
title="What Our Travelers Say"
|
title="Client Testimonials"
|
||||||
description="Hear from guests who've experienced extraordinary journeys"
|
description="What our guests are saying about their experiences"
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
|
animationType="slide-up"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", name: "Victoria Sterling", role: "Traveler", testimonial: "Luxuria transformed our anniversary trip into something truly magical. Every detail was perfect.", icon: Sparkles },
|
||||||
id: "1",
|
{ id: "2", name: "James & Elizabeth Moore", role: "Honeymooners", testimonial: "Our safari honeymoon was nothing short of extraordinary. The lodges were spectacular.", icon: Sparkles },
|
||||||
name: "Victoria Sterling",
|
{ id: "3", name: "Roberta Chen", role: "Traveler", testimonial: "From the private jet charter to the exclusive vineyard tours, Luxuria curated an experience that exceeded all my expectations.", icon: Sparkles },
|
||||||
date: "December 2024",
|
|
||||||
title: "An absolutely flawless experience from start to finish",
|
|
||||||
quote: "Luxuria transformed our anniversary trip into something truly magical. Every detail was perfect, from the private transfers to the surprise sunset dinner on the beach. Their team anticipated our every need.",
|
|
||||||
tag: "Maldives",
|
|
||||||
avatarSrc: "/templates/luxury-travel-agency/testimonial/testimonial1.webp",
|
|
||||||
avatarAlt: "Victoria Sterling",
|
|
||||||
imageSrc: "/templates/luxury-travel-agency/testimonial/testimonial1.webp",
|
|
||||||
imageAlt: "Maldives trip",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
name: "James & Elizabeth Moore",
|
|
||||||
date: "November 2024",
|
|
||||||
title: "Beyond our wildest expectations",
|
|
||||||
quote: "Our safari honeymoon was nothing short of extraordinary. The lodges were spectacular, the wildlife encounters unforgettable, and the attention to detail was impeccable throughout our journey.",
|
|
||||||
tag: "Tanzania",
|
|
||||||
avatarSrc: "/templates/luxury-travel-agency/testimonial/testimonial2.webp",
|
|
||||||
avatarAlt: "James & Elizabeth Moore",
|
|
||||||
imageSrc: "/templates/luxury-travel-agency/testimonial/testimonial2.webp",
|
|
||||||
imageAlt: "Safari experience",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "3",
|
|
||||||
name: "Roberta Chen",
|
|
||||||
date: "October 2024",
|
|
||||||
title: "The definition of luxury travel",
|
|
||||||
quote: "From the private jet charter to the exclusive vineyard tours, Luxuria curated an experience that exceeded all my expectations. Their network of contacts opened doors I never knew existed.",
|
|
||||||
tag: "France",
|
|
||||||
avatarSrc: "/templates/luxury-travel-agency/testimonial/testimonial3.webp",
|
|
||||||
avatarAlt: "Roberta Chen",
|
|
||||||
imageSrc: "/templates/luxury-travel-agency/testimonial/testimonial3.webp",
|
|
||||||
imageAlt: "France trip",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<ContactSplitForm
|
|
||||||
title="Plan Your Journey"
|
|
||||||
description="Let us create your perfect luxury travel experience"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
imageSrc="/templates/luxury-travel-agency/contact/contact1.webp"
|
|
||||||
imageAlt="Luxury travel"
|
|
||||||
mediaPosition="right"
|
|
||||||
mediaAnimation="slide-up"
|
|
||||||
buttonText="Start Planning"
|
|
||||||
inputs={[
|
|
||||||
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
|
||||||
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
|
||||||
{ name: "phone", type: "tel", placeholder: "Phone Number" },
|
|
||||||
{ name: "destination", type: "text", placeholder: "Dream Destination" },
|
|
||||||
]}
|
|
||||||
textarea={{
|
|
||||||
name: "message",
|
|
||||||
placeholder: "Tell us about your ideal travel experience...",
|
|
||||||
rows: 4,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<FooterCard
|
<FooterCard
|
||||||
logoText="Luxuria"
|
logoText="Luxuria"
|
||||||
copyrightText="© 2025 Luxuria Travel | Luxury Journeys Worldwide"
|
copyrightText="© 2025 Luxuria Travel | Luxury Journeys Worldwide"
|
||||||
|
|||||||
Reference in New Issue
Block a user