Merge version_2_1781544414947 into main #1

Merged
bender merged 1 commits from version_2_1781544414947 into main 2026-06-15 17:28:41 +00:00
8 changed files with 275 additions and 192 deletions

View File

@@ -1,207 +1,37 @@
import { StyleProvider } from "@/components/ui/StyleProvider";
import HeroBrandCarousel from "@/components/sections/hero/HeroBrandCarousel";
import AboutText from "@/components/sections/about/AboutText";
import FeaturesMediaCards from "@/components/sections/features/FeaturesMediaCards";
import FeaturesDetailedSteps from "@/components/sections/features/FeaturesDetailedSteps";
import FeaturesTaggedCards from "@/components/sections/features/FeaturesTaggedCards";
import TestimonialSplitCards from "@/components/sections/testimonial/TestimonialSplitCards";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
// files directly. Non-block content (wrappers, non-inlinable sections) is
// preserved inline; extracted section blocks become <XSection/> refs.
export default function HomePage() {
import { StyleProvider } from "@/components/ui/StyleProvider";
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
import ServicesSection from './HomePage/sections/Services';
import HowItWorksSection from './HomePage/sections/HowItWorks';
import DestinationsSection from './HomePage/sections/Destinations';
import ReviewsSection from './HomePage/sections/Reviews';
import ContactSection from './HomePage/sections/Contact';
export default function HomePage(): React.JSX.Element {
return (
<StyleProvider siteBackground="none" heroBackground="cornerGlow" buttonVariant="arrow">
<div id="hero" data-section="hero">
<HeroBrandCarousel
brand="Luxuria"
description="Experience the world's most extraordinary destinations with our bespoke luxury travel experiences curated just for you."
primaryButton={{ text: "Plan Trip", href: "#contact" }}
secondaryButton={{ text: "Explore", href: "#destinations" }}
items={[
{ imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/hero/hero1.webp" },
{ imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/hero/hero2.webp" },
{ imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/hero/hero3.jpg" },
{ imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/hero/hero4.jpg" },
]}
/>
</div>
<HeroSection />
<div id="about" data-section="about">
<AboutText
title="We craft unforgettable journeys to the world's most exclusive destinations, where every detail is curated to perfection."
primaryButton={{ text: "Our Story", href: "#" }}
secondaryButton={{ text: "View Destinations", href: "#destinations" }}
/>
</div>
<AboutSection />
<div id="services" data-section="services">
<FeaturesMediaCards
tag="Services"
title="Tailored Travel Experiences"
description="From private jets to secluded villas, we handle every detail of your journey."
items={[
{
title: "Private Aviation",
description: "Charter flights and private jet services to any destination worldwide.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/services/service5.webp",
},
{
title: "Luxury Accommodations",
description: "Handpicked five-star hotels, villas, and exclusive resorts.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/services/service1.webp",
},
{
title: "Curated Experiences",
description: "Unique adventures and cultural immersions designed just for you.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/services/service4.webp",
},
{
title: "Fine Dining",
description: "Reservations at Michelin-starred restaurants and private chef services.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/services/service3.webp",
},
]}
/>
</div>
<ServicesSection />
<div id="how-it-works" data-section="how-it-works">
<FeaturesDetailedSteps
tag="How It Works"
title="Your Journey Begins Here"
description="From initial consultation to your return home, we manage every detail."
steps={[
{
tag: "Step 01",
title: "Share",
subtitle: "Tell us about your dream destination",
description: "Share your travel preferences, desired experiences, and any special requirements. Our expert advisors will listen carefully to understand your vision.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/phone/phone5.webp",
},
{
tag: "Step 02",
title: "Plan",
subtitle: "Receive a bespoke travel itinerary",
description: "Our team crafts a personalized journey featuring handpicked accommodations, exclusive experiences, and seamless logistics tailored to your preferences.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/phone/phone3.webp",
},
{
tag: "Step 03",
title: "Travel",
subtitle: "Enjoy your seamless journey",
description: "Relax and enjoy every moment while we handle all the details behind the scenes. Our 24/7 concierge service ensures everything runs perfectly.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/phone/phone1.webp",
},
]}
/>
</div>
<HowItWorksSection />
<div id="destinations" data-section="destinations">
<FeaturesTaggedCards
tag="Destinations"
title="Extraordinary Destinations"
description="Explore handpicked locations that define luxury travel."
items={[
{
tag: "Asia",
title: "Maldives Private Island",
description: "Exclusive overwater villas with direct lagoon access and private butler service.",
primaryButton: { text: "Explore", href: "#" },
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/destination/destination6.webp",
},
{
tag: "Europe",
title: "Swiss Alpine Retreat",
description: "Secluded mountain chalets with panoramic views and world-class skiing.",
primaryButton: { text: "Explore", href: "#" },
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/destination/destination5.webp",
},
{
tag: "Africa",
title: "African Safari Lodge",
description: "Intimate wildlife encounters in the heart of the Serengeti.",
primaryButton: { text: "Explore", href: "#" },
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/destination/destination1.webp",
},
{
tag: "Europe",
title: "Amalfi Coast Villa",
description: "Clifftop estates with Mediterranean views and private beach access.",
primaryButton: { text: "Explore", href: "#" },
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/destination/destination4.webp",
},
{
tag: "Asia",
title: "Kyoto Ryokan",
description: "Traditional Japanese inns with zen gardens and kaiseki dining.",
primaryButton: { text: "Explore", href: "#" },
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/destination/destination3.webp",
},
{
tag: "South America",
title: "Patagonia Eco Lodge",
description: "Remote wilderness retreats surrounded by glaciers and pristine nature.",
primaryButton: { text: "Explore", href: "#" },
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/destination/destination2.webp",
},
]}
/>
</div>
<DestinationsSection />
<div id="reviews" data-section="reviews">
<TestimonialSplitCards
tag="Reviews"
title="What Our Travelers Say"
description="Hear from guests who've experienced extraordinary journeys."
testimonials={[
{
tag: "Maldives",
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.",
name: "Victoria Sterling",
date: "December 2024",
avatarImageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/testimonial/testimonial1.webp",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/testimonial/testimonial1.webp",
},
{
tag: "Tanzania",
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.",
name: "James & Elizabeth Moore",
date: "November 2024",
avatarImageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/testimonial/testimonial2.webp",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/testimonial/testimonial2.webp",
},
{
tag: "France",
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.",
name: "Roberta Chen",
date: "October 2024",
avatarImageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/testimonial/testimonial3.webp",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/testimonial/testimonial3.webp",
},
]}
/>
</div>
<ReviewsSection />
<div id="contact" data-section="contact">
<ContactSplitForm
tag="Contact"
title="Plan Your Journey"
description="Let us create your perfect luxury travel experience."
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 }}
buttonText="Start Planning"
imageSrc="https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/contact/contact1.webp"
/>
</div>
<ContactSection />
</StyleProvider>

View File

@@ -0,0 +1,17 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "about" section.
import React from 'react';
import AboutText from "@/components/sections/about/AboutText";
export default function AboutSection(): React.JSX.Element {
return (
<div id="about" data-section="about">
<AboutText
title="We craft unforgettable journeys to the world's most exclusive destinations, where every detail is curated to perfection."
primaryButton={{ text: "Our Story", href: "#" }}
secondaryButton={{ text: "View Destinations", href: "#destinations" }}
/>
</div>
);
}

View File

@@ -0,0 +1,26 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "contact" section.
import React from 'react';
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
export default function ContactSection(): React.JSX.Element {
return (
<div id="contact" data-section="contact">
<ContactSplitForm
tag="Contact"
title="Plan Your Journey"
description="Let us create your perfect luxury travel experience."
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 }}
buttonText="Start Planning"
imageSrc="https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/contact/contact1.webp"
/>
</div>
);
}

View File

@@ -0,0 +1,61 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "destinations" section.
import React from 'react';
import FeaturesTaggedCards from "@/components/sections/features/FeaturesTaggedCards";
export default function DestinationsSection(): React.JSX.Element {
return (
<div id="destinations" data-section="destinations">
<FeaturesTaggedCards
tag="Destinations"
title="Extraordinary Destinations"
description="Explore handpicked locations that define luxury travel."
items={[
{
tag: "Asia",
title: "Maldives Private Island",
description: "Exclusive overwater villas with direct lagoon access and private butler service.",
primaryButton: { text: "Explore", href: "#" },
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/destination/destination6.webp",
},
{
tag: "Europe",
title: "Swiss Alpine Retreat",
description: "Secluded mountain chalets with panoramic views and world-class skiing.",
primaryButton: { text: "Explore", href: "#" },
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/destination/destination5.webp",
},
{
tag: "Africa",
title: "African Safari Lodge",
description: "Intimate wildlife encounters in the heart of the Serengeti.",
primaryButton: { text: "Explore", href: "#" },
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/destination/destination1.webp",
},
{
tag: "Europe",
title: "Amalfi Coast Villa",
description: "Clifftop estates with Mediterranean views and private beach access.",
primaryButton: { text: "Explore", href: "#" },
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/destination/destination4.webp",
},
{
tag: "Asia",
title: "Kyoto Ryokan",
description: "Traditional Japanese inns with zen gardens and kaiseki dining.",
primaryButton: { text: "Explore", href: "#" },
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/destination/destination3.webp",
},
{
tag: "South America",
title: "Patagonia Eco Lodge",
description: "Remote wilderness retreats surrounded by glaciers and pristine nature.",
primaryButton: { text: "Explore", href: "#" },
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/destination/destination2.webp",
},
]}
/>
</div>
);
}

View File

@@ -0,0 +1,24 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "hero" section.
import React from 'react';
import HeroBrandCarousel from "@/components/sections/hero/HeroBrandCarousel";
export default function HeroSection(): React.JSX.Element {
return (
<div id="hero" data-section="hero">
<HeroBrandCarousel
brand="Luxuria"
description="Experience the world's most extraordinary destinations with our bespoke luxury travel experiences curated just for you."
primaryButton={{ text: "Plan Trip", href: "#contact" }}
secondaryButton={undefined as any}
items={[
{ imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/hero/hero1.webp" },
{ imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/hero/hero2.webp" },
{ imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/hero/hero3.jpg" },
{ imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/hero/hero4.jpg" },
]}
/>
</div>
);
}

View File

@@ -0,0 +1,40 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "how-it-works" section.
import React from 'react';
import FeaturesDetailedSteps from "@/components/sections/features/FeaturesDetailedSteps";
export default function HowItWorksSection(): React.JSX.Element {
return (
<div id="how-it-works" data-section="how-it-works">
<FeaturesDetailedSteps
tag="How It Works"
title="Your Journey Begins Here"
description="From initial consultation to your return home, we manage every detail."
steps={[
{
tag: "Step 01",
title: "Share",
subtitle: "Tell us about your dream destination",
description: "Share your travel preferences, desired experiences, and any special requirements. Our expert advisors will listen carefully to understand your vision.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/phone/phone5.webp",
},
{
tag: "Step 02",
title: "Plan",
subtitle: "Receive a bespoke travel itinerary",
description: "Our team crafts a personalized journey featuring handpicked accommodations, exclusive experiences, and seamless logistics tailored to your preferences.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/phone/phone3.webp",
},
{
tag: "Step 03",
title: "Travel",
subtitle: "Enjoy your seamless journey",
description: "Relax and enjoy every moment while we handle all the details behind the scenes. Our 24/7 concierge service ensures everything runs perfectly.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/phone/phone1.webp",
},
]}
/>
</div>
);
}

View File

@@ -0,0 +1,46 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "reviews" section.
import React from 'react';
import TestimonialSplitCards from "@/components/sections/testimonial/TestimonialSplitCards";
export default function ReviewsSection(): React.JSX.Element {
return (
<div id="reviews" data-section="reviews">
<TestimonialSplitCards
tag="Reviews"
title="What Our Travelers Say"
description="Hear from guests who've experienced extraordinary journeys."
testimonials={[
{
tag: "Maldives",
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.",
name: "Victoria Sterling",
date: "December 2024",
avatarImageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/testimonial/testimonial1.webp",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/testimonial/testimonial1.webp",
},
{
tag: "Tanzania",
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.",
name: "James & Elizabeth Moore",
date: "November 2024",
avatarImageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/testimonial/testimonial2.webp",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/testimonial/testimonial2.webp",
},
{
tag: "France",
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.",
name: "Roberta Chen",
date: "October 2024",
avatarImageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/testimonial/testimonial3.webp",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/testimonial/testimonial3.webp",
},
]}
/>
</div>
);
}

View File

@@ -0,0 +1,39 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "services" section.
import React from 'react';
import FeaturesMediaCards from "@/components/sections/features/FeaturesMediaCards";
export default function ServicesSection(): React.JSX.Element {
return (
<div id="services" data-section="services">
<FeaturesMediaCards
tag="Services"
title="Tailored Travel Experiences"
description="From private jets to secluded villas, we handle every detail of your journey."
items={[
{
title: "Private Aviation",
description: "Charter flights and private jet services to any destination worldwide.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/services/service5.webp",
},
{
title: "Luxury Accommodations",
description: "Handpicked five-star hotels, villas, and exclusive resorts.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/services/service1.webp",
},
{
title: "Curated Experiences",
description: "Unique adventures and cultural immersions designed just for you.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/services/service4.webp",
},
{
title: "Fine Dining",
description: "Reservations at Michelin-starred restaurants and private chef services.",
imageSrc: "https://storage.googleapis.com/webild/default/templates/luxury-travel-agency/services/service3.webp",
},
]}
/>
</div>
);
}