From 8c00103b7201ddc16c90c8cec274dce10bf17c7f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 06:43:18 +0000 Subject: [PATCH 1/2] Update src/app/packages/page.tsx --- src/app/packages/page.tsx | 69 +++++++++------------------------------ 1 file changed, 15 insertions(+), 54 deletions(-) diff --git a/src/app/packages/page.tsx b/src/app/packages/page.tsx index a75cb29..e76185f 100644 --- a/src/app/packages/page.tsx +++ b/src/app/packages/page.tsx @@ -7,7 +7,7 @@ import FeatureBento from "@/components/sections/feature/FeatureBento"; import ContactFaq from "@/components/sections/contact/ContactFaq"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import Link from "next/link"; -import { Star, MapPin, Plane } from "lucide-react"; +import { Star, MapPin, Plane, Mountain, Waves, Sun, Snowflake } from "lucide-react"; export default function PackagesPage() { const navItems = [ @@ -19,8 +19,7 @@ export default function PackagesPage() { const footerColumns = [ { - title: "Company", - items: [ + title: "Company", items: [ { label: "About Us", href: "/" }, { label: "Our Team", href: "/#team" }, { label: "Careers", href: "#" }, @@ -28,8 +27,7 @@ export default function PackagesPage() { ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "Travel Packages", href: "/packages" }, { label: "Custom Itineraries", href: "#" }, { label: "Visa Assistance", href: "#" }, @@ -37,8 +35,7 @@ export default function PackagesPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Contact Us", href: "#" }, { label: "Support", href: "#" }, { label: "Phone: +1-800-WANDER", href: "#" }, @@ -54,7 +51,7 @@ export default function PackagesPage() { borderRadius="rounded" contentWidth="smallMedium" sizing="largeSmall" - background="aurora" + background="circleGradient" cardStyle="layered-gradient" primaryButtonStyle="radial-glow" secondaryButtonStyle="radial-glow" @@ -78,26 +75,11 @@ export default function PackagesPage() { tagAnimation="slide-up" products={[ { - id: "1", - name: "Mountain Adventure Trek", - price: "$1,299", - imageSrc: "http://img.b2bpic.net/free-photo/couple-hiking-mountains_1303-10814.jpg?_wi=3", - imageAlt: "Mountain hiking adventure", - }, + id: "1", name: "Mountain Adventure Trek", price: "$1,299", imageSrc: "http://img.b2bpic.net/free-photo/couple-hiking-mountains_1303-10814.jpg", imageAlt: "Mountain hiking adventure"}, { - id: "2", - name: "Tropical Beach Paradise", - price: "$899", - imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-their-sunny-holiday_23-2149283989.jpg?_wi=3", - imageAlt: "Beach resort getaway", - }, + id: "2", name: "Tropical Beach Paradise", price: "$899", imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-their-sunny-holiday_23-2149283989.jpg", imageAlt: "Beach resort getaway"}, { - id: "3", - name: "Urban City Explorer", - price: "$699", - imageSrc: "http://img.b2bpic.net/free-photo/two-female-tourists-are-standing-middle-narrow-street-look-sights-map_613910-5633.jpg?_wi=3", - imageAlt: "Urban city exploration", - }, + id: "3", name: "Urban City Explorer", price: "$699", imageSrc: "http://img.b2bpic.net/free-photo/two-female-tourists-are-standing-middle-narrow-street-look-sights-map_613910-5633.jpg", imageAlt: "Urban city exploration"}, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -115,28 +97,16 @@ export default function PackagesPage() { tagAnimation="slide-up" features={[ { - title: "Alpine Adventure", - description: "Experience majestic mountains and breathtaking peaks", - bentoComponent: "reveal-icon", - icon: "Mountain", + title: "Alpine Adventure", description: "Experience majestic mountains and breathtaking peaks", bentoComponent: "reveal-icon", icon: Mountain, }, { - title: "Tropical Paradise", - description: "Relax on pristine beaches with crystal clear waters", - bentoComponent: "reveal-icon", - icon: "Waves", + title: "Tropical Paradise", description: "Relax on pristine beaches with crystal clear waters", bentoComponent: "reveal-icon", icon: Waves, }, { - title: "Desert Exploration", - description: "Discover ancient cultures and vast desert landscapes", - bentoComponent: "reveal-icon", - icon: "Sun", + title: "Desert Exploration", description: "Discover ancient cultures and vast desert landscapes", bentoComponent: "reveal-icon", icon: Sun, }, { - title: "Arctic Wonder", - description: "Witness the majesty of glaciers and polar beauty", - bentoComponent: "reveal-icon", - icon: "Snowflake", + title: "Arctic Wonder", description: "Witness the majesty of glaciers and polar beauty", bentoComponent: "reveal-icon", icon: Snowflake, }, ]} animationType="slide-up" @@ -154,20 +124,11 @@ export default function PackagesPage() { ctaButton={{ text: "Schedule Consultation", href: "/packages" }} faqs={[ { - id: "1", - title: "What makes WanderGo different?", - content: "With over 20 years of experience, personalized service, competitive pricing, and a 99% customer satisfaction rate, WanderGo stands out as your trusted travel partner.", - }, + id: "1", title: "What makes WanderGo different?", content: "With over 20 years of experience, personalized service, competitive pricing, and a 99% customer satisfaction rate, WanderGo stands out as your trusted travel partner."}, { - id: "2", - title: "How far in advance should I book?", - content: "We recommend booking 2-3 months in advance for the best selection and prices. However, last-minute bookings are available subject to availability.", - }, + id: "2", title: "How far in advance should I book?", content: "We recommend booking 2-3 months in advance for the best selection and prices. However, last-minute bookings are available subject to availability."}, { - id: "3", - title: "Do you offer customized itineraries?", - content: "Absolutely! Our consultants can create personalized travel itineraries tailored to your preferences, budget, and interests.", - }, + id: "3", title: "Do you offer customized itineraries?", content: "Absolutely! Our consultants can create personalized travel itineraries tailored to your preferences, budget, and interests."}, ]} animationType="slide-up" useInvertedBackground={true} -- 2.49.1 From a4bc0c5d2a6c73896c3280c34f87d8d5a59c0b15 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 06:43:18 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 153 ++++++++++++----------------------------------- 1 file changed, 38 insertions(+), 115 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f05579a..c9bd285 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -19,7 +19,7 @@ export default function HomePage() { borderRadius="rounded" contentWidth="smallMedium" sizing="largeSmall" - background="aurora" + background="circleGradient" cardStyle="layered-gradient" primaryButtonStyle="radial-glow" secondaryButtonStyle="radial-glow" @@ -36,8 +36,7 @@ export default function HomePage() { { name: "Contact", id: "contact" } ]} button={{ - text: "Book Now", - href: "#" + text: "Book Now", href: "#" }} animateOnLoad={true} /> @@ -51,41 +50,33 @@ export default function HomePage() { tag="Travel Freedom Awaits" tagIcon={Compass} tagAnimation="slide-up" - background={{ variant: "aurora" }} + background={{ variant: "plain" }} leftCarouselItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/outdoor-portrait-rich-caucasian-woman-classic-jumpsuit-with-red-lipstick-by-hammock-vacation-outside-villa-hotel_343596-554.jpg", - imageAlt: "Tropical paradise beach" + imageSrc: "http://img.b2bpic.net/free-photo/outdoor-portrait-rich-caucasian-woman-classic-jumpsuit-with-red-lipstick-by-hammock-vacation-outside-villa-hotel_343596-554.jpg", imageAlt: "Tropical paradise beach" }, { - imageSrc: "http://img.b2bpic.net/free-photo/couple-hiking-mountains_1303-10814.jpg?_wi=1", - imageAlt: "Mountain hiking adventure" + imageSrc: "http://img.b2bpic.net/free-photo/couple-hiking-mountains_1303-10814.jpg", imageAlt: "Mountain hiking adventure" }, { - imageSrc: "http://img.b2bpic.net/free-photo/lake-lucerne-switzerland_181624-24450.jpg", - imageAlt: "Alpine mountain landscape" + imageSrc: "http://img.b2bpic.net/free-photo/lake-lucerne-switzerland_181624-24450.jpg", imageAlt: "Alpine mountain landscape" }, { - imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-their-sunny-holiday_23-2149283989.jpg?_wi=1", - imageAlt: "Beach resort getaway" + imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-their-sunny-holiday_23-2149283989.jpg", imageAlt: "Beach resort getaway" } ]} rightCarouselItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/pura-ulun-danu-bratan-bali-hindu-temple-surrounded-by-flowers-bratan-lake_158538-15793.jpg", - imageAlt: "Tropical temple destination" + imageSrc: "http://img.b2bpic.net/free-photo/pura-ulun-danu-bratan-bali-hindu-temple-surrounded-by-flowers-bratan-lake_158538-15793.jpg", imageAlt: "Tropical temple destination" }, { - imageSrc: "http://img.b2bpic.net/free-photo/beach-island-terschelling-netherlands-sky_181624-20375.jpg", - imageAlt: "Desert safari landscape" + imageSrc: "http://img.b2bpic.net/free-photo/beach-island-terschelling-netherlands-sky_181624-20375.jpg", imageAlt: "Desert safari landscape" }, { - imageSrc: "http://img.b2bpic.net/free-photo/berg-snow-blue-lagoon-cold_1232-4507.jpg", - imageAlt: "Arctic glacier landscape" + imageSrc: "http://img.b2bpic.net/free-photo/berg-snow-blue-lagoon-cold_1232-4507.jpg", imageAlt: "Arctic glacier landscape" }, { - imageSrc: "http://img.b2bpic.net/free-photo/two-female-tourists-are-standing-middle-narrow-street-look-sights-map_613910-5633.jpg?_wi=1", - imageAlt: "Urban city exploration" + imageSrc: "http://img.b2bpic.net/free-photo/two-female-tourists-are-standing-middle-narrow-street-look-sights-map_613910-5633.jpg", imageAlt: "Urban city exploration" } ]} carouselPosition="right" @@ -102,25 +93,13 @@ export default function HomePage() {