Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| eddcc4ed51 | |||
| f96c122a76 | |||
| 3f4ea30634 | |||
| 104d395f32 | |||
| a150cb6f0d |
299
src/app/page.tsx
299
src/app/page.tsx
@@ -1,282 +1,91 @@
|
|||||||
"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 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 { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import { Sparkles, Plane, Compass, Instagram, Facebook, Linkedin } from "lucide-react";
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
|
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
|
||||||
|
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||||
|
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
|
||||||
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||||
|
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||||
|
import { Star } from "lucide-react";
|
||||||
|
|
||||||
export default function LuxuryTravelAgencyTemplatePage() {
|
export default function SheinHomepage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="icon-arrow"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="entrance-slide"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="rounded"
|
borderRadius="pill"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="medium"
|
sizing="medium"
|
||||||
background="none"
|
background="noise"
|
||||||
cardStyle="solid"
|
cardStyle="solid"
|
||||||
primaryButtonStyle="shadow"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="solid"
|
||||||
headingFontWeight="medium"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{ name: "About", id: "about" },
|
{ name: "Best Sellers", id: "best-sellers" },
|
||||||
{ name: "Services", id: "services" },
|
|
||||||
{ name: "Destinations", id: "destinations" },
|
|
||||||
{ name: "Reviews", id: "reviews" },
|
{ name: "Reviews", id: "reviews" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Connect", id: "connect" },
|
||||||
]}
|
]}
|
||||||
brandName="Luxuria"
|
brandName="SHEIN"
|
||||||
button={{ text: "Plan Your Trip", href: "#contact" }}
|
button={{ text: "Shop Now", href: "#best-sellers" }}
|
||||||
/>
|
/>
|
||||||
<HeroCarouselLogo
|
<ProductCardTwo
|
||||||
logoText="Luxuria"
|
title="Best Sellers"
|
||||||
description="Experience the world's most extraordinary destinations with our bespoke luxury travel experiences curated just for you."
|
description="Discover our most-loved styles that define the season."
|
||||||
buttons={[
|
gridVariant="four-items-2x2-equal-grid"
|
||||||
{ text: "Plan Your Journey", href: "#contact" },
|
animationType="blur-reveal"
|
||||||
{ text: "Explore Destinations", href: "#destinations" },
|
|
||||||
]}
|
|
||||||
slides={[
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/hero/hero1.webp", imageAlt: "Luxury resort" },
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/hero/hero2.webp", imageAlt: "Private yacht" },
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/hero/hero3.jpg", imageAlt: "Private yacht" },
|
|
||||||
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/hero/hero4.jpg", imageAlt: "Private yacht" },
|
|
||||||
]}
|
|
||||||
showDimOverlay={true}
|
|
||||||
/>
|
|
||||||
<InlineImageSplitTextAbout
|
|
||||||
className="pt-40"
|
|
||||||
heading={[
|
|
||||||
{ type: "text", content: "We craft" },
|
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/hero/hero3.jpg", alt: "Travel" },
|
|
||||||
{ type: "text", content: "unforgettable journeys to the world's most" },
|
|
||||||
{ type: "image", src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/hero/hero4.jpg", alt: "Destination" },
|
|
||||||
{ type: "text", content: "exclusive destinations" },
|
|
||||||
]}
|
|
||||||
buttons={[
|
|
||||||
{ text: "Our Story", href: "#" },
|
|
||||||
]}
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
<FeatureCardOne
|
|
||||||
tag="Services"
|
|
||||||
tagIcon={Sparkles}
|
|
||||||
title="Tailored Travel Experiences"
|
|
||||||
description="From private jets to secluded villas, we handle every detail of your journey"
|
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
animationType="slide-up"
|
|
||||||
gridVariant="uniform-all-items-equal"
|
|
||||||
uniformGridCustomHeightClasses="h-100 2xl:h-110"
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
products={[
|
||||||
{
|
{ id: "1", brand: "Shein", name: "Floral Summer Dress", price: "$29.99", rating: 4.8, reviewCount: "1.2k", imageSrc: "https://images.unsplash.com/photo-1572804013309-59a88b7e92f1?w=800&h=800&fit=crop" },
|
||||||
title: "Private Aviation",
|
{ id: "2", brand: "Shein", name: "Classic Denim Jacket", price: "$45.00", rating: 4.7, reviewCount: "850", imageSrc: "https://images.unsplash.com/photo-1523275335684-37898b6baf30?w=800&h=800&fit=crop" },
|
||||||
description: "Charter flights and private jet services to any destination worldwide.",
|
{ id: "3", brand: "Shein", name: "Minimalist Tote", price: "$19.99", rating: 4.9, reviewCount: "2.1k", imageSrc: "https://images.unsplash.com/photo-1584917865442-de89df76afd3?w=800&h=800&fit=crop" },
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/services/service5.webp",
|
{ id: "4", brand: "Shein", name: "Casual Knit Sweater", price: "$35.50", rating: 4.6, reviewCount: "920", imageSrc: "https://images.unsplash.com/photo-1620799140408-edc6dcb6d633?w=800&h=800&fit=crop" },
|
||||||
imageAlt: "Private jet",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Luxury Accommodations",
|
|
||||||
description: "Handpicked five-star hotels, villas, and exclusive resorts.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/services/service1.webp",
|
|
||||||
imageAlt: "Luxury hotel",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Curated Experiences",
|
|
||||||
description: "Unique adventures and cultural immersions designed just for you.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/services/service4.webp",
|
|
||||||
imageAlt: "Experience",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Fine Dining",
|
|
||||||
description: "Reservations at Michelin-starred restaurants and private chef services.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/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: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/services/service2.webp",
|
|
||||||
imageAlt: "Photography",
|
|
||||||
}
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<FeatureCardNine
|
<SocialProofOne
|
||||||
tag="How It Works"
|
names={["Vogue", "Elle", "Cosmopolitan", "Harper's Bazaar", "InStyle"]}
|
||||||
tagIcon={Compass}
|
title="As Seen In"
|
||||||
title="Your Journey Begins Here"
|
description="Join millions of fashion enthusiasts worldwide."
|
||||||
description="From initial consultation to your return home, we manage every detail"
|
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
showStepNumbers={true}
|
|
||||||
animationType="slide-up"
|
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
|
||||||
{
|
|
||||||
title: "Share Your Vision",
|
|
||||||
description: "Tell us about your dream destination and travel preferences.",
|
|
||||||
phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/phone/phone5.webp", imageAlt: "Consultation" },
|
|
||||||
phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/phone/phone6.webp", imageAlt: "Planning" },
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Custom Itinerary",
|
|
||||||
description: "Receive a bespoke travel plan crafted by our expert advisors.",
|
|
||||||
phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/phone/phone3.webp", imageAlt: "Itinerary" },
|
|
||||||
phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/phone/phone4.webp", imageAlt: "Details" },
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Seamless Experience",
|
|
||||||
description: "Enjoy your journey while we handle every detail behind the scenes.",
|
|
||||||
phoneOne: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/phone/phone1.webp", imageAlt: "Travel" },
|
|
||||||
phoneTwo: { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/phone/phone2.webp", imageAlt: "Experience" },
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
<FeatureCardMedia
|
<TestimonialCardThirteen
|
||||||
tag="Destinations"
|
title="Customer Love"
|
||||||
tagIcon={Plane}
|
description="See why our community keeps coming back for more."
|
||||||
title="Extraordinary Destinations"
|
showRating={true}
|
||||||
description="Explore handpicked locations that define luxury travel"
|
animationType="scale-rotate"
|
||||||
textboxLayout="default"
|
|
||||||
animationType="slide-up"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
features={[
|
|
||||||
{
|
|
||||||
id: "1",
|
|
||||||
title: "Maldives Private Island",
|
|
||||||
description: "Exclusive overwater villas with direct lagoon access and private butler service.",
|
|
||||||
tag: "Asia",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/destination/destination6.webp",
|
|
||||||
imageAlt: "Maldives",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: "2",
|
|
||||||
title: "Swiss Alpine Retreat",
|
|
||||||
description: "Secluded mountain chalets with panoramic views and world-class skiing.",
|
|
||||||
tag: "Europe",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/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: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/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: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/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: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/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: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/destination/destination2.webp",
|
|
||||||
imageAlt: "Patagonia",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
<TestimonialCardFive
|
|
||||||
tag="Reviews"
|
|
||||||
tagIcon={Sparkles}
|
|
||||||
title="What Our Travelers Say"
|
|
||||||
description="Hear from guests who've experienced extraordinary journeys"
|
|
||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", name: "Jane Doe", handle: "@janedoe", testimonial: "The quality is incredible for the price!", rating: 5, icon: Star },
|
||||||
id: "1",
|
{ id: "2", name: "John Smith", handle: "@johnsmith", testimonial: "Fast shipping and stylish designs.", rating: 5, icon: Star },
|
||||||
name: "Victoria Sterling",
|
|
||||||
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: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial1.webp",
|
|
||||||
avatarAlt: "Victoria Sterling",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/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: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/testimonial/testimonial2.webp",
|
|
||||||
avatarAlt: "James & Elizabeth Moore",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/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: "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",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<ContactSplitForm
|
<ContactSplit
|
||||||
title="Plan Your Journey"
|
title="Join Our Inner Circle"
|
||||||
description="Let us create your perfect luxury travel experience"
|
description="Get 15% off your first order when you subscribe."
|
||||||
|
tag="Newsletter"
|
||||||
|
inputPlaceholder="Enter your email address"
|
||||||
|
buttonText="Subscribe"
|
||||||
|
background={{ variant: "plain" }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/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
|
<FooterSimple
|
||||||
logoText="Luxuria"
|
columns={[
|
||||||
copyrightText="© 2025 Luxuria Travel | Luxury Journeys Worldwide"
|
{ title: "Shop", items: [{ label: "New Arrivals" }, { label: "Best Sellers" }, { label: "Sale" }] },
|
||||||
socialLinks={[
|
{ title: "Support", items: [{ label: "Track Order" }, { label: "Returns" }, { label: "Help Center" }] },
|
||||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
{ title: "Company", items: [{ label: "About Us" }, { label: "Careers" }, { label: "Sustainability" }] },
|
||||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
|
||||||
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
|
|
||||||
]}
|
]}
|
||||||
|
bottomLeftText="© 2025 SHEIN. All rights reserved."
|
||||||
|
bottomRightText="Privacy | Terms"
|
||||||
/>
|
/>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f6f0e9;
|
--background: #fbf8f4;
|
||||||
--card: #efe7dd;
|
--card: #f7f2ed;
|
||||||
--foreground: #2b180a;
|
--foreground: #1a1a1a;
|
||||||
--primary-cta: #2b180a;
|
--primary-cta: #1a1a1a;
|
||||||
--primary-cta-text: #f6f0e9;
|
--primary-cta-text: #f6f0e9;
|
||||||
--secondary-cta: #efe7dd;
|
--secondary-cta: #f7f2ed;
|
||||||
--secondary-cta-text: #2b180a;
|
--secondary-cta-text: #2b180a;
|
||||||
--accent: #94877c;
|
--accent: #e8dcd2;
|
||||||
--background-accent: #afa094;
|
--background-accent: #f2e8de;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user