Merge version_1 into main #4

Merged
bender merged 2 commits from version_1 into main 2026-03-26 10:57:11 +00:00
2 changed files with 93 additions and 486 deletions

View File

@@ -2,14 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactFaq from '@/components/sections/contact/ContactFaq';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBase from '@/components/sections/footer/FooterBase';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import { Calendar, Mail, Phone } from "lucide-react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -24,225 +21,51 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "home",
href: "/",
},
{
name: "About",
id: "about",
href: "/about",
},
{
name: "Destinations",
id: "destinations",
href: "/destinations",
},
{
name: "Pricing",
id: "pricing",
href: "/pricing",
},
{
name: "Contact",
id: "contact",
href: "/contact",
},
]}
brandName="Wanderlust Journeys"
bottomLeftText="Explore the World"
bottomRightText="travel@wanderlust.com"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Destinations", id: "/destinations" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }
]}
brandName="Wanderlust Journeys"
bottomLeftText="Explore the World"
bottomRightText="travel@wanderlust.com"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplitForm
useInvertedBackground={false}
title="Get in Touch"
description="We'd love to hear from you! Fill out the form below or reach out directly, and let's start planning your next great adventure together."
inputs={[
{
name: "name",
type: "text",
placeholder: "Your Name",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Your Email",
required: true,
},
{
name: "subject",
type: "text",
placeholder: "Subject",
required: true,
},
]}
textarea={{
name: "message",
placeholder: "Your Message",
rows: 5,
required: true,
}}
imageSrc="http://img.b2bpic.net/free-photo/table-with-map-touristic-set_23-2147732616.jpg?_wi=2"
imageAlt="beautiful world map travel"
mediaAnimation="slide-up"
buttonText="Send Message"
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Get in Touch"
title="Plan Your Dream Getaway"
description="Ready to embark on an unforgettable journey? Our travel experts are here to help you every step of the way."
imageSrc="http://img.b2bpic.net/free-photo/table-with-map-touristic-set_23-2147732616.jpg"
imageAlt="Stylized world map with connecting lines"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Your Email Address"
buttonText="Send Inquiry"
termsText="By submitting, you agree to our Privacy Policy and Terms of Service."
/>
</div>
<div id="contact" data-section="contact">
<ContactFaq
animationType="slide-up"
useInvertedBackground={true}
faqs={[
{
id: "1",
title: "What are your business hours?",
content: "Our online support is available 24/7. For direct calls, our travel specialists are available Monday to Friday, 9:00 AM - 6:00 PM EST.",
},
{
id: "2",
title: "Where are you located?",
content: "Wanderlust Journeys operates globally with a primary office in New York City. We serve clients worldwide through our online platform and dedicated virtual consultations.",
},
{
id: "3",
title: "Do you offer international calls?",
content: "Yes, we offer international call options. Please schedule a call through our website or contact form, and we'll arrange it at a convenient time for you.",
},
{
id: "4",
title: "How quickly will I receive a response?",
content: "We aim to respond to all inquiries within 24-48 business hours. For urgent matters, please use our direct phone line.",
},
]}
ctaTitle="Need Immediate Assistance?"
ctaDescription="Our dedicated team is ready to assist you with any urgent travel inquiries or last-minute questions."
ctaButton={{
text: "Call Us Now",
href: "tel:+1234567890",
}}
ctaIcon={Phone}
/>
</div>
<div id="metric" data-section="metric">
<MetricCardThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{
id: "1",
icon: Mail,
title: "Email Us",
value: "info@wanderlust.com",
},
{
id: "2",
icon: Phone,
title: "Call Us",
value: "+1 (555) 123-4567",
},
{
id: "3",
icon: Calendar,
title: "Office Hours",
value: "Mon-Fri: 9am-6pm EST",
},
]}
title="Connect with Us"
description="We're here to help you every step of the way. Reach out via your preferred method and let us assist your travel needs."
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Our Team",
href: "/about#team",
},
{
label: "Careers",
href: "#",
},
{
label: "Blog",
href: "#",
},
],
},
{
title: "Destinations",
items: [
{
label: "Asia",
href: "/destinations#asia",
},
{
label: "Europe",
href: "/destinations#europe",
},
{
label: "Americas",
href: "/destinations#americas",
},
{
label: "Africa",
href: "/destinations#africa",
},
],
},
{
title: "Support",
items: [
{
label: "FAQ",
href: "/pricing#faq",
},
{
label: "Contact Us",
href: "/contact",
},
{
label: "Booking Policy",
href: "#",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
logoText="Wanderlust Journeys"
copyrightText="© 2024 Wanderlust Journeys. All rights reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/traveller-man-with-backpack-explores-iceland_346278-319.jpg"
imageAlt="Serene mountain lake at sunset"
columns={[
{ title: "Destinations", items: [{ label: "Europe", href: "/destinations#europe" }, { label: "Asia", href: "/destinations#asia" }, { label: "Africa", href: "/destinations#africa" }, { label: "Americas", href: "/destinations#americas" }] },
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Our Team", href: "/about#team" }, { label: "Careers", href: "#" }, { label: "Blog", href: "#" }] },
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "/contact" }, { label: "Terms of Service", href: "#" }, { label: "Privacy Policy", href: "#" }] }
]}
logoText="Wanderlust Journeys"
copyrightText="© 2025 | Wanderlust Journeys. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);

View File

@@ -2,13 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import FeatureCardTwentyThree from '@/components/sections/feature/FeatureCardTwentyThree';
import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function LandingPage() {
export default function DestinationsPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -23,266 +21,52 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "home",
href: "/",
},
{
name: "About",
id: "about",
href: "/about",
},
{
name: "Destinations",
id: "destinations",
href: "/destinations",
},
{
name: "Pricing",
id: "pricing",
href: "/pricing",
},
{
name: "Contact",
id: "contact",
href: "/contact",
},
]}
brandName="Wanderlust Journeys"
bottomLeftText="Explore the World"
bottomRightText="travel@wanderlust.com"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Destinations", id: "/destinations" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" }
]}
brandName="Wanderlust Journeys"
bottomLeftText="Explore the World"
bottomRightText="travel@wanderlust.com"
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardTwentyThree
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{
id: "1",
title: "Bali, Indonesia",
tags: [
"Beach",
"Culture",
"Relaxation",
],
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-woman-relaxing-around-swimming-pool-resort-hotel-vacation_74190-16271.jpg?_wi=2",
imageAlt: "bali rice paddies sunset",
},
{
id: "2",
title: "Paris, France",
tags: [
"City Break",
"Romance",
"Gastronomy",
],
imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-lyon-from-top-notre-dame-de-fourviere_268835-712.jpg?_wi=2",
imageAlt: "paris eiffel tower romantic city",
},
{
id: "3",
title: "Serengeti, Tanzania",
tags: [
"Wildlife",
"Adventure",
"Safari",
],
imageSrc: "http://img.b2bpic.net/free-photo/horses-running-hill_53876-41695.jpg?_wi=2",
imageAlt: "african safari wildlife savanna",
},
{
id: "4",
title: "Kyoto, Japan",
tags: [
"History",
"Nature",
"Tradition",
],
imageSrc: "http://img.b2bpic.net/free-photo/japan-city-night-with-cars-people_23-2148942973.jpg?_wi=2",
imageAlt: "japan cherry blossoms temple",
},
]}
title="Explore a World of Possibilities"
description="From serene beaches to vibrant cityscapes and untamed wilderness, our curated destinations offer unparalleled beauty and unique experiences for every traveler."
tag="Our Destinations"
/>
</div>
<div id="products" data-section="products">
<ProductCardThree
animationType="scale-rotate"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={false}
carouselMode="buttons"
products={[
{ id: "bali-escape", name: "Bali Paradise Escape", price: "Starting from $1,800", imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-young-asian-woman-relaxing-around-swimming-pool-resort-hotel-vacation_74190-16271.jpg", imageAlt: "Lush green rice paddies in Bali" },
{ id: "paris-romance", name: "Parisian Romance Getaway", price: "Starting from $2,200", imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-lyon-from-top-notre-dame-de-fourviere_268835-712.jpg", imageAlt: "Eiffel Tower at sunset in Paris" },
{ id: "african-safari", name: "Grand African Safari", price: "Starting from $3,500", imageSrc: "http://img.b2bpic.net/free-photo/horses-running-hill_53876-41695.jpg", imageAlt: "Elephants walking across the savanna at sunset" },
{ id: "japan-cultural", name: "Japan Cultural Journey", price: "Starting from $2,900", imageSrc: "http://img.b2bpic.net/free-photo/japan-city-night-with-cars-people_23-2148942973.jpg", imageAlt: "Japanese temple with cherry blossoms" }
]}
title="Our Exciting Destinations"
description="Explore the globe with our hand-picked and customizable travel packages."
/>
</div>
<div id="feature" data-section="feature">
<FeatureCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
features={[
{
title: "Personalized Itineraries",
description: "Craft a journey tailored exactly to your desires, pace, and interests with our expert planners.",
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-traveling-without-covid_23-2149077823.jpg?_wi=2",
imageAlt: "personalized travel planning map",
button: {
text: "Plan Your Trip",
href: "/contact",
},
},
{
title: "Immersive Cultural Tours",
description: "Experience local traditions, cuisine, and arts with guided tours led by passionate experts.",
imageSrc: "http://img.b2bpic.net/free-photo/female-tourist-who-is-looking-binoculars-see-atmosphere-waterfall_1150-7582.jpg?_wi=3",
imageAlt: "unique travel experiences adventure",
button: {
text: "Discover Culture",
href: "/destinations#culture",
},
},
{
title: "24/7 Dedicated Support",
description: "Enjoy peace of mind with round-the-clock support from our team, no matter where you are.",
imageSrc: "http://img.b2bpic.net/free-photo/young-asian-woman-sit-chair-near-stream-listening-music-wireless-headphones-use-tablet-with-happily-while-camping-woods-copy-space_1150-61820.jpg?_wi=2",
imageAlt: "24/7 travel support customer service",
button: {
text: "Get Support",
href: "/contact",
},
},
]}
title="Handpicked Experiences Await"
description="Dive deeper into what makes each Wanderlust Journey unforgettable. We go beyond the ordinary to bring you bespoke activities, local insights, and seamless travel."
tag="Why Choose Us"
/>
</div>
<div id="testimonial" data-section="testimonial">
<TestimonialCardTwo
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1",
name: "Elena R.",
role: "Adventure Seeker",
testimonial: "Wanderlust Journeys created the most incredible safari trip for us. Every detail was perfect, from the wildlife sightings to the luxury accommodations.",
imageSrc: "http://img.b2bpic.net/free-photo/pleased-happy-female-model-poses-black-bikini-straw-hat-has-broad-smile-while-looks-sunshine-stands-beach-near-sea-ocean-smiles-joyfully-people-summer-time-rest-concept_273609-2884.jpg?_wi=4",
imageAlt: "Elena R. avatar",
},
{
id: "2",
name: "Marcus L.",
role: "Culture Enthusiast",
testimonial: "Our personalized tour of Japan was beyond compare. The hidden gems and local experiences were truly authentic and unforgettable.",
imageSrc: "http://img.b2bpic.net/free-photo/traveler-stands-alone-edge-towering-mountain-range_482257-117933.jpg?_wi=4",
imageAlt: "Marcus L. avatar",
},
{
id: "3",
name: "Sophia & Ben",
role: "Honeymooners",
testimonial: "Our honeymoon in Bali was a dream come true. Wanderlust Journeys handled everything, allowing us to simply relax and enjoy.",
imageSrc: "http://img.b2bpic.net/free-photo/laughing-man-woman-embracing_23-2147850507.jpg?_wi=3",
imageAlt: "Sophia & Ben avatar",
},
{
id: "4",
name: "The Miller Family",
role: "Family Vacationers",
testimonial: "Planning a family trip can be stressful, but Wanderlust Journeys made it effortless. The kids loved every moment, and so did we!",
imageSrc: "http://img.b2bpic.net/free-photo/father-child-exploring-seashells-beach-sunset-toddler-with-dad-sand_169016-69731.jpg?_wi=3",
imageAlt: "The Miller Family avatar",
},
]}
title="What Our Travelers Say"
description="Hear from adventurers who have embarked on unforgettable journeys with us and discovered the magic of bespoke travel."
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Company",
items: [
{
label: "About Us",
href: "/about",
},
{
label: "Our Team",
href: "/about#team",
},
{
label: "Careers",
href: "#",
},
{
label: "Blog",
href: "#",
},
],
},
{
title: "Destinations",
items: [
{
label: "Asia",
href: "/destinations#asia",
},
{
label: "Europe",
href: "/destinations#europe",
},
{
label: "Americas",
href: "/destinations#americas",
},
{
label: "Africa",
href: "/destinations#africa",
},
],
},
{
title: "Support",
items: [
{
label: "FAQ",
href: "/pricing#faq",
},
{
label: "Contact Us",
href: "/contact",
},
{
label: "Booking Policy",
href: "#",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms of Service",
href: "#",
},
],
},
]}
logoText="Wanderlust Journeys"
copyrightText="© 2024 Wanderlust Journeys. All rights reserved."
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/traveller-man-with-backpack-explores-iceland_346278-319.jpg"
imageAlt="Serene mountain lake at sunset"
columns={[
{ title: "Destinations", items: [{ label: "Europe", href: "/destinations#europe" }, { label: "Asia", href: "/destinations#asia" }, { label: "Africa", href: "/destinations#africa" }, { label: "Americas", href: "/destinations#americas" }] },
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Our Team", href: "/about#team" }, { label: "Careers", href: "#" }, { label: "Blog", href: "#" }] },
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "/contact" }, { label: "Terms of Service", href: "#" }, { label: "Privacy Policy", href: "#" }] }
]}
logoText="Wanderlust Journeys"
copyrightText="© 2025 | Wanderlust Journeys. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);