Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #4.
This commit is contained in:
2026-06-10 05:03:34 +00:00
3 changed files with 124 additions and 111 deletions

View File

@@ -24,12 +24,13 @@ export default function BookingPage() {
<ReactLenis root> <ReactLenis root>
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "About", id: "about" }, { name: "Home", id: "/" },
{ name: "Services", id: "services" }, { name: "About", id: "/#about" },
{ name: "Destinations", id: "destinations" }, { name: "Services", id: "/#services" },
{ name: "Reviews", id: "reviews" }, { name: "Destinations", id: "/#destinations" },
{ name: "Contact", id: "contact" },
{ name: "Properties", id: "/properties" }, { name: "Properties", id: "/properties" },
{ name: "Reviews", id: "/#reviews" },
{ name: "Contact", id: "/#contact" },
{ name: "Booking", id: "/booking" } { name: "Booking", id: "/booking" }
]} ]}
brandName="Luxuria" brandName="Luxuria"

View File

@@ -30,16 +30,17 @@ export default function LuxuryTravelAgencyTemplatePage() {
<ReactLenis root> <ReactLenis root>
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "About", id: "about" }, { name: "Home", id: "/" },
{ name: "Services", id: "services" }, { name: "About", id: "/#about" },
{ name: "Destinations", id: "destinations" }, { name: "Services", id: "/#services" },
{ name: "Reviews", id: "reviews" }, { name: "Destinations", id: "/#destinations" },
{ name: "Contact", id: "contact" },
{ name: "Properties", id: "/properties" }, { name: "Properties", id: "/properties" },
{ name: "Reviews", id: "/#reviews" },
{ name: "Contact", id: "/#contact" },
{ name: "Booking", id: "/booking" } { name: "Booking", id: "/booking" }
]} ]}
brandName="Luxuria" brandName="Luxuria"
button={{ text: "Plan Your Trip", href: "#contact" }} button={{ text: "Plan Your Trip", href: "/booking" }}
/> />
<HeroCarouselLogo <HeroCarouselLogo
logoText="Luxuria" logoText="Luxuria"
@@ -56,6 +57,7 @@ export default function LuxuryTravelAgencyTemplatePage() {
]} ]}
showDimOverlay={true} showDimOverlay={true}
/> />
<div id="about" data-section="about">
<InlineImageSplitTextAbout <InlineImageSplitTextAbout
className="pt-40" className="pt-40"
heading={[ heading={[
@@ -70,6 +72,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
]} ]}
useInvertedBackground={false} useInvertedBackground={false}
/> />
</div>
<div id="services" data-section="services">
<FeatureCardOne <FeatureCardOne
tag="Services" tag="Services"
tagIcon={Sparkles} tagIcon={Sparkles}
@@ -93,6 +97,7 @@ export default function LuxuryTravelAgencyTemplatePage() {
title: "Photography Tours", description: "Professional photographers to capture your once-in-a-lifetime moments.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/services/service2.webp", imageAlt: "Photography"} title: "Photography Tours", description: "Professional photographers to capture your once-in-a-lifetime moments.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/services/service2.webp", imageAlt: "Photography"}
]} ]}
/> />
</div>
<FeatureCardNine <FeatureCardNine
tag="How It Works" tag="How It Works"
tagIcon={Compass} tagIcon={Compass}
@@ -117,6 +122,7 @@ export default function LuxuryTravelAgencyTemplatePage() {
}, },
]} ]}
/> />
<div id="destinations" data-section="destinations">
<FeatureCardMedia <FeatureCardMedia
tag="Destinations" tag="Destinations"
tagIcon={Plane} tagIcon={Plane}
@@ -140,6 +146,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
id: "6", title: "Patagonia Eco Lodge", description: "Remote wilderness retreats surrounded by glaciers and pristine nature.", tag: "South America", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/destination/destination2.webp?_wi=1", imageAlt: "Patagonia"}, id: "6", title: "Patagonia Eco Lodge", description: "Remote wilderness retreats surrounded by glaciers and pristine nature.", tag: "South America", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/destination/destination2.webp?_wi=1", imageAlt: "Patagonia"},
]} ]}
/> />
</div>
<div id="reviews" data-section="reviews">
<TestimonialCardFive <TestimonialCardFive
tag="Reviews" tag="Reviews"
tagIcon={Sparkles} tagIcon={Sparkles}
@@ -156,6 +164,8 @@ export default function LuxuryTravelAgencyTemplatePage() {
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: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial3.webp", avatarAlt: "Roberta Chen", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial3.webp", imageAlt: "France trip"}, 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: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial3.webp", avatarAlt: "Roberta Chen", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial3.webp", imageAlt: "France trip"},
]} ]}
/> />
</div>
<div id="contact" data-section="contact">
<ContactSplitForm <ContactSplitForm
title="Plan Your Journey" title="Plan Your Journey"
description="Let us create your perfect luxury travel experience" description="Let us create your perfect luxury travel experience"
@@ -175,6 +185,7 @@ export default function LuxuryTravelAgencyTemplatePage() {
name: "message", placeholder: "Tell us about your ideal travel experience...", rows: 4, name: "message", placeholder: "Tell us about your ideal travel experience...", rows: 4,
}} }}
/> />
</div>
<FooterCard <FooterCard
logoText="Luxuria" logoText="Luxuria"
copyrightText="© 2025 Luxuria Travel | Luxury Journeys Worldwide" copyrightText="© 2025 Luxuria Travel | Luxury Journeys Worldwide"

View File

@@ -72,12 +72,13 @@ export default function PropertiesPage() {
<ReactLenis root> <ReactLenis root>
<NavbarLayoutFloatingInline <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ name: "About", id: "about" }, { name: "Home", id: "/" },
{ name: "Services", id: "services" }, { name: "About", id: "/#about" },
{ name: "Destinations", id: "destinations" }, { name: "Services", id: "/#services" },
{ name: "Reviews", id: "reviews" }, { name: "Destinations", id: "/#destinations" },
{ name: "Contact", id: "contact" },
{ name: "Properties", id: "/properties" }, { name: "Properties", id: "/properties" },
{ name: "Reviews", id: "/#reviews" },
{ name: "Contact", id: "/#contact" },
{ name: "Booking", id: "/booking" } { name: "Booking", id: "/booking" }
]} ]}
brandName="Luxuria" brandName="Luxuria"