diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 926f0ff..f40c8ae 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -89,7 +89,7 @@ export default function LandingPage() { icon: Sparkles, }, ]} - imageSrc="http://img.b2bpic.net/free-photo/close-up-hands-with-different-items_23-2148925821.jpg" + imageSrc="http://img.b2bpic.net/free-photo/close-up-hands-with-different-items_23-2148925821.jpg?_wi=2" imageAlt="diverse travel agency team smiling" mediaAnimation="slide-up" /> @@ -114,7 +114,7 @@ export default function LandingPage() { title: "Global Destinations", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/group-friends-planning-trip-while-having-breakfast_23-2148952430.jpg" + imageSrc="http://img.b2bpic.net/free-photo/group-friends-planning-trip-while-having-breakfast_23-2148952430.jpg?_wi=2" imageAlt="custom travel itinerary map globe" mediaAnimation="slide-up" metricsAnimation="blur-reveal" @@ -131,21 +131,21 @@ export default function LandingPage() { id: "1", name: "Sarah Chen", role: "Chief Explorer", - imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-with-book_23-2148330607.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-with-book_23-2148330607.jpg?_wi=2", imageAlt: "Sarah Chen portrait", }, { id: "2", name: "Mark Johnson", role: "Logistics Lead", - imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1675.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1675.jpg?_wi=2", imageAlt: "Mark Johnson portrait", }, { id: "3", name: "Aisha Khan", role: "Destination Specialist", - imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-standing_23-2148653434.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-standing_23-2148653434.jpg?_wi=2", imageAlt: "Aisha Khan portrait", }, ]} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index c88b1ec..f1a4f88 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -96,7 +96,7 @@ export default function LandingPage() { rows: 5, required: true, }} - imageSrc="http://img.b2bpic.net/free-photo/communication-travel-internet-leisure-technology_1232-3858.jpg" + imageSrc="http://img.b2bpic.net/free-photo/communication-travel-internet-leisure-technology_1232-3858.jpg?_wi=3" imageAlt="world map globe travel agency" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/destinations/page.tsx b/src/app/destinations/page.tsx index 7169504..d778951 100644 --- a/src/app/destinations/page.tsx +++ b/src/app/destinations/page.tsx @@ -79,7 +79,7 @@ export default function LandingPage() { "History", "Nature", ], - imageSrc: "http://img.b2bpic.net/free-photo/byodo-temple_74190-5416.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/byodo-temple_74190-5416.jpg?_wi=2", imageAlt: "Historic temples in Kyoto", }, { @@ -90,7 +90,7 @@ export default function LandingPage() { "Adventure", "Safari", ], - imageSrc: "http://img.b2bpic.net/free-photo/crossroad-car-safari-scene_23-2151822318.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/crossroad-car-safari-scene_23-2151822318.jpg?_wi=2", imageAlt: "African safari wildlife", }, { @@ -101,7 +101,7 @@ export default function LandingPage() { "City", "Gastronomy", ], - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-walking-city_23-2149249192.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-walking-city_23-2149249192.jpg?_wi=2", imageAlt: "Eiffel Tower in Paris", }, { @@ -112,7 +112,7 @@ export default function LandingPage() { "Spirituality", "Beaches", ], - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-is-engaged-meditation_72229-1157.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-is-engaged-meditation_72229-1157.jpg?_wi=2", imageAlt: "Bali rice terraces", }, ]} @@ -133,28 +133,28 @@ export default function LandingPage() { id: "1", name: "Romantic Paris Escape", price: "$2,500", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-walking-city_23-2149249192.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-walking-city_23-2149249192.jpg?_wi=3", imageAlt: "Eiffel Tower in Paris", }, { id: "2", name: "Bali Spiritual Retreat", price: "$1,800", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-is-engaged-meditation_72229-1157.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-is-engaged-meditation_72229-1157.jpg?_wi=3", imageAlt: "Bali rice terraces", }, { id: "3", name: "Grand African Safari", price: "$4,200", - imageSrc: "http://img.b2bpic.net/free-photo/crossroad-car-safari-scene_23-2151822318.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/crossroad-car-safari-scene_23-2151822318.jpg?_wi=3", imageAlt: "African safari wildlife", }, { id: "4", name: "Kyoto Cultural Immersion", price: "$2,100", - imageSrc: "http://img.b2bpic.net/free-photo/byodo-temple_74190-5416.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/byodo-temple_74190-5416.jpg?_wi=3", imageAlt: "Historic temples in Kyoto", }, ]} diff --git a/src/app/page.tsx b/src/app/page.tsx index bd1d4d3..5c2e597 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -115,7 +115,7 @@ export default function LandingPage() { description: "Assistance available whenever and wherever you need it.", }, ]} - imageSrc="http://img.b2bpic.net/free-photo/close-up-hands-with-different-items_23-2148925821.jpg" + imageSrc="http://img.b2bpic.net/free-photo/close-up-hands-with-different-items_23-2148925821.jpg?_wi=1" imageAlt="Diverse team of travel agents smiling, representing expertise and friendly service." mediaAnimation="slide-up" /> @@ -134,7 +134,7 @@ export default function LandingPage() { "Customizable", "Unique", ], - imageSrc: "http://img.b2bpic.net/free-photo/group-friends-planning-trip-while-having-breakfast_23-2148952430.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/group-friends-planning-trip-while-having-breakfast_23-2148952430.jpg?_wi=1", imageAlt: "Custom travel itinerary on a map with a globe overlay", }, { @@ -144,7 +144,7 @@ export default function LandingPage() { "Reliable", "Responsive", ], - imageSrc: "http://img.b2bpic.net/free-photo/diverse-friends-are-going-journey-they-are-planning-using-globe-bright-living-room_1157-47898.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/diverse-friends-are-going-journey-they-are-planning-using-globe-bright-living-room_1157-47898.jpg?_wi=1", imageAlt: "Customer service agent assisting a client via phone", }, ]} @@ -168,7 +168,7 @@ export default function LandingPage() { price: "$2,500", rating: 5, reviewCount: "230", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-walking-city_23-2149249192.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-people-walking-city_23-2149249192.jpg?_wi=1", imageAlt: "Eiffel Tower in Paris at sunset", }, { @@ -178,7 +178,7 @@ export default function LandingPage() { price: "$1,800", rating: 4, reviewCount: "180", - imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-is-engaged-meditation_72229-1157.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-is-engaged-meditation_72229-1157.jpg?_wi=1", imageAlt: "Lush rice terraces in Bali", }, { @@ -188,7 +188,7 @@ export default function LandingPage() { price: "$4,200", rating: 5, reviewCount: "310", - imageSrc: "http://img.b2bpic.net/free-photo/crossroad-car-safari-scene_23-2151822318.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/crossroad-car-safari-scene_23-2151822318.jpg?_wi=1", imageAlt: "Giraffes silhouetted against an African sunset", }, { @@ -198,7 +198,7 @@ export default function LandingPage() { price: "$2,100", rating: 4, reviewCount: "150", - imageSrc: "http://img.b2bpic.net/free-photo/byodo-temple_74190-5416.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/byodo-temple_74190-5416.jpg?_wi=1", imageAlt: "Traditional Japanese temple in Kyoto with cherry blossoms", }, ]} @@ -219,7 +219,7 @@ export default function LandingPage() { quote: "Wanderlust Tours made our honeymoon absolutely perfect. Every detail was handled, and we had the most incredible time exploring Italy. Highly recommend!", name: "Sarah & Mark T.", role: "Satisfied Client", - imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-with-book_23-2148330607.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-with-book_23-2148330607.jpg?_wi=1", imageAlt: "Smiling woman", }, { @@ -228,7 +228,7 @@ export default function LandingPage() { quote: "Our family trip to Thailand was a dream come true. The personalized itinerary and recommendations were spot-on. Thank you for the memories!", name: "The Chen Family", role: "Adventure Seekers", - imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1675.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1675.jpg?_wi=1", imageAlt: "Smiling man", }, { @@ -237,7 +237,7 @@ export default function LandingPage() { quote: "I've never experienced such dedicated service. My solo trip to Peru was flawlessly organized, and I felt supported every step of the way.", name: "Emily R.", role: "Solo Explorer", - imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-standing_23-2148653434.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-standing_23-2148653434.jpg?_wi=1", imageAlt: "Smiling woman", }, { @@ -246,7 +246,7 @@ export default function LandingPage() { quote: "Wanderlust Tours has planned several trips for us, and they always exceed expectations. Their attention to detail and passion for travel shine through.", name: "David & Lisa K.", role: "Loyal Customers", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-new-town_23-2148631400.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-new-town_23-2148631400.jpg?_wi=1", imageAlt: "Smiling man", }, { @@ -255,7 +255,7 @@ export default function LandingPage() { quote: "From booking flights to recommending local gems, Wanderlust Tours took all the stress out of our vacation. We truly relaxed and enjoyed our time!", name: "Jessica L.", role: "Relaxed Traveler", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-with-hat-camera_23-2148597634.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-with-hat-camera_23-2148597634.jpg?_wi=1", imageAlt: "Smiling woman", }, { @@ -264,7 +264,7 @@ export default function LandingPage() { quote: "The team at Wanderlust Tours provided exceptional service and made our anniversary trip truly special. We can't wait to plan our next adventure with them.", name: "Robert B.", role: "Happy Couple", - imageSrc: "http://img.b2bpic.net/free-photo/happy-grey-haired-man-sportswear-standing-outside-smiling-closeup-shot-mature-sporty-person-active-lifestyle-concept_74855-12857.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-grey-haired-man-sportswear-standing-outside-smiling-closeup-shot-mature-sporty-person-active-lifestyle-concept_74855-12857.jpg?_wi=1", imageAlt: "Smiling man", }, ]} @@ -325,7 +325,7 @@ export default function LandingPage() { tag="Get in Touch" title="Start Your Adventure Today" description="Ready to explore the world? Contact us to discuss your dream vacation. Our travel experts are here to help you plan every detail." - imageSrc="http://img.b2bpic.net/free-photo/communication-travel-internet-leisure-technology_1232-3858.jpg" + imageSrc="http://img.b2bpic.net/free-photo/communication-travel-internet-leisure-technology_1232-3858.jpg?_wi=1" imageAlt="Stylized world map showing interconnected travel routes" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/services/page.tsx b/src/app/services/page.tsx index 2ef4287..f3459c2 100644 --- a/src/app/services/page.tsx +++ b/src/app/services/page.tsx @@ -77,7 +77,7 @@ export default function LandingPage() { title: "Custom Itinerary Design", description: "We craft unique travel plans perfectly aligned with your interests and preferences.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/group-friends-planning-trip-while-having-breakfast_23-2148952430.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/group-friends-planning-trip-while-having-breakfast_23-2148952430.jpg?_wi=3", imageAlt: "Custom travel itinerary", }, items: [ @@ -101,7 +101,7 @@ export default function LandingPage() { title: "Expert Local Guides", description: "Gain authentic insights and discover hidden gems with our knowledgeable local experts.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/diverse-friends-are-going-journey-they-are-planning-using-globe-bright-living-room_1157-47898.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/diverse-friends-are-going-journey-they-are-planning-using-globe-bright-living-room_1157-47898.jpg?_wi=2", imageAlt: "Local guide assisting travelers", }, items: [ @@ -125,7 +125,7 @@ export default function LandingPage() { title: "24/7 Travel Support", description: "Enjoy peace of mind with our dedicated support team available around the clock.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/communication-travel-internet-leisure-technology_1232-3858.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/communication-travel-internet-leisure-technology_1232-3858.jpg?_wi=2", imageAlt: "Global support map", }, items: [ @@ -179,7 +179,7 @@ export default function LandingPage() { name: "Eleanor V.", role: "Adventure Seeker", testimonial: "The custom itinerary was beyond perfect! Every detail was thought of, making our anniversary trip truly special.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-with-hat-camera_23-2148597634.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-with-hat-camera_23-2148597634.jpg?_wi=2", imageAlt: "Eleanor V. portrait", icon: Quote, }, @@ -188,7 +188,7 @@ export default function LandingPage() { name: "David M.", role: "Business Traveler", testimonial: "Their 24/7 support saved our trip when we had an unexpected delay. Professional and incredibly responsive!", - imageSrc: "http://img.b2bpic.net/free-photo/happy-grey-haired-man-sportswear-standing-outside-smiling-closeup-shot-mature-sporty-person-active-lifestyle-concept_74855-12857.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-grey-haired-man-sportswear-standing-outside-smiling-closeup-shot-mature-sporty-person-active-lifestyle-concept_74855-12857.jpg?_wi=2", imageAlt: "David M. portrait", icon: Quote, }, @@ -197,7 +197,7 @@ export default function LandingPage() { name: "Priya S.", role: "Family Vacationer", testimonial: "Our local guide was fantastic with the kids, making every historical site engaging and fun. Highly recommend!", - imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-standing_23-2148653434.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-standing_23-2148653434.jpg?_wi=3", imageAlt: "Priya S. portrait", icon: Quote, }, @@ -206,7 +206,7 @@ export default function LandingPage() { name: "Michael B.", role: "Solo Explorer", testimonial: "From booking to return, the service was impeccable. I felt completely supported throughout my solo journey.", - imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1675.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1675.jpg?_wi=3", imageAlt: "Michael B. portrait", icon: Quote, }, diff --git a/src/app/testimonials/page.tsx b/src/app/testimonials/page.tsx index ea50ca6..3075a78 100644 --- a/src/app/testimonials/page.tsx +++ b/src/app/testimonials/page.tsx @@ -76,7 +76,7 @@ export default function LandingPage() { name: "Jessica L.", handle: "@jess_travels", testimonial: "Wanderlust Tours created the most magical honeymoon for us! Every detail was perfect, from the luxurious resorts to the adventurous excursions. Truly a trip of a lifetime.", - imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-with-book_23-2148330607.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-with-book_23-2148330607.jpg?_wi=3", imageAlt: "Jessica L. portrait", }, { @@ -84,7 +84,7 @@ export default function LandingPage() { name: "Mark D.", handle: "@globetrekker_mark", testimonial: "I've traveled with many agencies, but Wanderlust Tours stands out. Their knowledge of local cultures and hidden gems is unmatched. Felt like a true local experience!", - imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1675.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1675.jpg?_wi=4", imageAlt: "Mark D. portrait", }, { @@ -92,7 +92,7 @@ export default function LandingPage() { name: "Samantha P.", handle: "@sam_explore", testimonial: "Our family vacation to Costa Rica was flawless. The guides were amazing with the kids, and the support team was always available. We're already planning our next trip!", - imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-standing_23-2148653434.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-standing_23-2148653434.jpg?_wi=4", imageAlt: "Samantha P. portrait", }, { @@ -100,7 +100,7 @@ export default function LandingPage() { name: "Chris B.", handle: "@chris_adventures", testimonial: "The attention to detail and personalized recommendations made my solo backpacking trip through Southeast Asia so much easier and more rewarding. Thank you, Wanderlust!", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-new-town_23-2148631400.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-new-town_23-2148631400.jpg?_wi=2", imageAlt: "Chris B. portrait", }, { @@ -108,7 +108,7 @@ export default function LandingPage() { name: "Fatima A.", handle: "@fatima_journey", testimonial: "From the moment we landed, everything was taken care of. The luxury retreat in Bali was exactly what we needed. Highly recommend for stress-free travel.", - imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-with-hat-camera_23-2148597634.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/portrait-stylish-woman-with-hat-camera_23-2148597634.jpg?_wi=3", imageAlt: "Fatima A. portrait", }, { @@ -116,7 +116,7 @@ export default function LandingPage() { name: "Tom W.", handle: "@tom_wanderlust", testimonial: "Their expertise in planning an African safari was invaluable. We saw so much wildlife and felt completely safe and well-informed throughout the entire adventure.", - imageSrc: "http://img.b2bpic.net/free-photo/happy-grey-haired-man-sportswear-standing-outside-smiling-closeup-shot-mature-sporty-person-active-lifestyle-concept_74855-12857.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-grey-haired-man-sportswear-standing-outside-smiling-closeup-shot-mature-sporty-person-active-lifestyle-concept_74855-12857.jpg?_wi=3", imageAlt: "Tom W. portrait", }, ]} @@ -139,7 +139,7 @@ export default function LandingPage() { handle: "@emily.roams", testimonial: "My trip to the Scottish Highlands was breathtaking. Wanderlust Tours arranged everything perfectly, even the unexpected weather.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-with-book_23-2148330607.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-with-book_23-2148330607.jpg?_wi=4", imageAlt: "Emily R. portrait", }, { @@ -148,7 +148,7 @@ export default function LandingPage() { handle: "@dan_explorer", testimonial: "Exceptional service from start to finish for my adventure in Patagonia. The guides were phenomenal!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1675.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1675.jpg?_wi=5", imageAlt: "Daniel S. portrait", }, { @@ -157,7 +157,7 @@ export default function LandingPage() { handle: "@chloek_journeys", testimonial: "The food tour in Italy organized by Wanderlust was an absolute dream. Every meal was a highlight!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-standing_23-2148653434.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-young-woman-standing_23-2148653434.jpg?_wi=5", imageAlt: "Chloe K. portrait", }, { @@ -166,7 +166,7 @@ export default function LandingPage() { handle: "@b_travels", testimonial: "Seamless logistics for my multi-city Asian tour. Loved the balance of guided activities and free time.", rating: 4, - imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-new-town_23-2148631400.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-posing-new-town_23-2148631400.jpg?_wi=3", imageAlt: "Ben T. portrait", }, ]}