From 63de8985708cd7843c9b078cb548759ec8e3b43d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 18:50:14 +0000 Subject: [PATCH 1/5] Update src/app/ai-tools/page.tsx --- src/app/ai-tools/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/ai-tools/page.tsx b/src/app/ai-tools/page.tsx index 641a394..064439c 100644 --- a/src/app/ai-tools/page.tsx +++ b/src/app/ai-tools/page.tsx @@ -136,7 +136,7 @@ export default function AIToolsPage() { "YouthBot found me concert tickets I didn't even know existed! The AI recommendations are insanely accurate.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/smiling-teen-with-grey-t-shirt-park_23-2147562535.jpg", + "http://img.b2bpic.net/free-photo/smiling-teen-with-grey-t-shirt-park_23-2147562535.jpg?_wi=3", imageAlt: "Emma", }, { @@ -147,7 +147,7 @@ export default function AIToolsPage() { "The gift suggestion AI saved me so much time shopping. It knew exactly what my friends wanted!", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/heated-young-handsome-guy-wearing-red-shirt-holding-collar-isolated-green-wall_141793-86701.jpg", + "http://img.b2bpic.net/free-photo/heated-young-handsome-guy-wearing-red-shirt-holding-collar-isolated-green-wall_141793-86701.jpg?_wi=3", imageAlt: "Marcus", }, { @@ -158,7 +158,7 @@ export default function AIToolsPage() { "YouthBot's savings plan helped me save $500 in 2 months! The AI breaks down exactly how to reach my goals.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/happy-cheerful-student-guy-standing-pale-outdoor-wall_74855-4289.jpg", + "http://img.b2bpic.net/free-photo/happy-cheerful-student-guy-standing-pale-outdoor-wall_74855-4289.jpg?_wi=3", imageAlt: "Sofia", }, ]} -- 2.49.1 From bc8ad6f0b32dded90b01eb7494ad27df0fec394c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 18:50:15 +0000 Subject: [PATCH 2/5] Update src/app/events/page.tsx --- src/app/events/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/events/page.tsx b/src/app/events/page.tsx index 0f5d01a..b70a053 100644 --- a/src/app/events/page.tsx +++ b/src/app/events/page.tsx @@ -72,7 +72,7 @@ export default function EventsPage() { name: "Summer Beats Festival 2025", price: "From $45", variant: "Friday • Multiple Stages", - imageSrc: "http://img.b2bpic.net/free-photo/friends-sitting-near-bonfire-smiling-playing-guitar-camping-grill-marshmallow_176420-4167.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/friends-sitting-near-bonfire-smiling-playing-guitar-camping-grill-marshmallow_176420-4167.jpg?_wi=2", imageAlt: "Music festival concert", }, { @@ -80,7 +80,7 @@ export default function EventsPage() { name: "Epic Adventure Premiere", price: "$14 Ticket", variant: "Now Playing • IMAX Available", - imageSrc: "http://img.b2bpic.net/free-photo/girls-with-popcorn-cinema_23-2147988945.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/girls-with-popcorn-cinema_23-2147988945.jpg?_wi=2", imageAlt: "Movie premiere screening", }, { @@ -88,7 +88,7 @@ export default function EventsPage() { name: "Designer Brand Mega Sale", price: "Up to 60% Off", variant: "Weekend Only • 8 Locations", - imageSrc: "http://img.b2bpic.net/free-photo/stylish-adult-woman-checking-clothes_23-2148625021.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/stylish-adult-woman-checking-clothes_23-2148625021.jpg?_wi=2", imageAlt: "Fashion brand store sale", }, { @@ -96,7 +96,7 @@ export default function EventsPage() { name: "Indie Rock Night Session", price: "From $25", variant: "Saturday • Outdoor Venue", - imageSrc: "http://img.b2bpic.net/free-photo/people-taking-selfie-near-red-car_23-2148039031.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/people-taking-selfie-near-red-car_23-2148039031.jpg?_wi=1", imageAlt: "Outdoor concert experience", }, { @@ -138,7 +138,7 @@ export default function EventsPage() { testimonial: "Found my favorite band performing locally through YouthVibe and the ticket prices were unbeatable. Already planning my next show!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-teen-with-grey-t-shirt-park_23-2147562535.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-teen-with-grey-t-shirt-park_23-2147562535.jpg?_wi=2", imageAlt: "Alex", }, { @@ -148,7 +148,7 @@ export default function EventsPage() { testimonial: "The movie notifications are perfect. I never miss new releases and the IMAX recommendations are spot-on for my taste!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/heated-young-handsome-guy-wearing-red-shirt-holding-collar-isolated-green-wall_141793-86701.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/heated-young-handsome-guy-wearing-red-shirt-holding-collar-isolated-green-wall_141793-86701.jpg?_wi=2", imageAlt: "Jordan", }, { @@ -158,7 +158,7 @@ export default function EventsPage() { testimonial: "Found exclusive teen discounts at brand stores I love. YouthVibe saved me hundreds this month alone!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/happy-cheerful-student-guy-standing-pale-outdoor-wall_74855-4289.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-cheerful-student-guy-standing-pale-outdoor-wall_74855-4289.jpg?_wi=2", imageAlt: "Riley", }, ]} -- 2.49.1 From aa7385844fc0a177048c6102ee40891d5d3d464c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 18:50:16 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1f482a8..01bc6da 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -150,7 +150,7 @@ export default function HomePage() { name: "Electric Pulse Music Festival", price: "Starting $35", variant: "This Weekend • 3 Cities", - imageSrc: "http://img.b2bpic.net/free-photo/friends-sitting-near-bonfire-smiling-playing-guitar-camping-grill-marshmallow_176420-4167.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/friends-sitting-near-bonfire-smiling-playing-guitar-camping-grill-marshmallow_176420-4167.jpg?_wi=1", imageAlt: "Concert stage lighting", }, { @@ -158,7 +158,7 @@ export default function HomePage() { name: "New Adventure Blockbuster", price: "Standard Ticket $12", variant: "Release Date • 50+ Theaters", - imageSrc: "http://img.b2bpic.net/free-photo/girls-with-popcorn-cinema_23-2147988945.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/girls-with-popcorn-cinema_23-2147988945.jpg?_wi=1", imageAlt: "Movie premiere", }, { @@ -166,7 +166,7 @@ export default function HomePage() { name: "Premium Brand Pop-Up Store", price: "Free Entry • Extra 20% Off", variant: "Opening • 5 Locations", - imageSrc: "http://img.b2bpic.net/free-photo/stylish-adult-woman-checking-clothes_23-2148625021.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/stylish-adult-woman-checking-clothes_23-2148625021.jpg?_wi=1", imageAlt: "Brand store", }, ]} @@ -248,7 +248,7 @@ export default function HomePage() { testimonial: "YouthVibe helped me find amazing concerts near me and I saved so much money using the app's deals. Best discovery app ever!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/smiling-teen-with-grey-t-shirt-park_23-2147562535.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/smiling-teen-with-grey-t-shirt-park_23-2147562535.jpg?_wi=1", imageAlt: "Emma", }, { @@ -258,7 +258,7 @@ export default function HomePage() { testimonial: "The AI gift suggestions are so accurate! Found the perfect birthday gifts for all my friends through YouthVibe recommendations.", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/heated-young-handsome-guy-wearing-red-shirt-holding-collar-isolated-green-wall_141793-86701.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/heated-young-handsome-guy-wearing-red-shirt-holding-collar-isolated-green-wall_141793-86701.jpg?_wi=1", imageAlt: "Marcus", }, { @@ -268,7 +268,7 @@ export default function HomePage() { testimonial: "Love the study-life balance tracker. Finally managing my time better and still enjoying everything I want to do!", rating: 5, - imageSrc: "http://img.b2bpic.net/free-photo/happy-cheerful-student-guy-standing-pale-outdoor-wall_74855-4289.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/happy-cheerful-student-guy-standing-pale-outdoor-wall_74855-4289.jpg?_wi=1", imageAlt: "Sofia", }, { -- 2.49.1 From 43cb6e3ed40919e9a90c0249a97b3b7fe51378fb Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 18:50:16 +0000 Subject: [PATCH 4/5] Update src/app/shopping/page.tsx --- src/app/shopping/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/shopping/page.tsx b/src/app/shopping/page.tsx index 5863ab2..231ff81 100644 --- a/src/app/shopping/page.tsx +++ b/src/app/shopping/page.tsx @@ -68,7 +68,7 @@ export default function ShoppingPage() { name: "Urban Outfitters", price: "Up to 30% Off", variant: "Fashion • Accessories • Lifestyle", - imageSrc: "http://img.b2bpic.net/free-photo/stylish-adult-woman-checking-clothes_23-2148625021.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/stylish-adult-woman-checking-clothes_23-2148625021.jpg?_wi=3", imageAlt: "Urban Outfitters store", }, { @@ -76,7 +76,7 @@ export default function ShoppingPage() { name: "ASOS", price: "Teen Exclusive Deals", variant: "Apparel • Shoes • Trends", - imageSrc: "http://img.b2bpic.net/free-photo/stylish-adult-woman-checking-clothes_23-2148625021.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/stylish-adult-woman-checking-clothes_23-2148625021.jpg?_wi=4", imageAlt: "ASOS storefront", }, { @@ -84,7 +84,7 @@ export default function ShoppingPage() { name: "H&M", price: "25% Student Discount", variant: "Fashion • Basics • Seasonal", - imageSrc: "http://img.b2bpic.net/free-photo/stylish-adult-woman-checking-clothes_23-2148625021.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/stylish-adult-woman-checking-clothes_23-2148625021.jpg?_wi=5", imageAlt: "H&M retail location", }, { @@ -92,7 +92,7 @@ export default function ShoppingPage() { name: "Nike Store", price: "New Collection Launch", variant: "Sportswear • Sneakers • Apparel", - imageSrc: "http://img.b2bpic.net/free-photo/stylish-adult-woman-checking-clothes_23-2148625021.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/stylish-adult-woman-checking-clothes_23-2148625021.jpg?_wi=6", imageAlt: "Nike store display", }, ]} -- 2.49.1 From 94837bc6d3b21f6271a99b72bc8ea0bc2fbd01ff Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 18:50:17 +0000 Subject: [PATCH 5/5] Update src/app/travel/page.tsx --- src/app/travel/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/travel/page.tsx b/src/app/travel/page.tsx index 5e7a5ca..cdd82f5 100644 --- a/src/app/travel/page.tsx +++ b/src/app/travel/page.tsx @@ -68,7 +68,7 @@ export default function TravelPage() { name: "Beach Paradise Getaway", price: "Starting $299/person", variant: "Group Tours • 7 Days • All-Inclusive", - imageSrc: "http://img.b2bpic.net/free-photo/people-taking-selfie-near-red-car_23-2148039031.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/people-taking-selfie-near-red-car_23-2148039031.jpg?_wi=2", imageAlt: "Beach destination", }, { @@ -76,7 +76,7 @@ export default function TravelPage() { name: "Mountain Adventure Quest", price: "From $199/person", variant: "Hiking • Camping • Nature Tours", - imageSrc: "http://img.b2bpic.net/free-photo/people-taking-selfie-near-red-car_23-2148039031.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/people-taking-selfie-near-red-car_23-2148039031.jpg?_wi=3", imageAlt: "Mountain adventure", }, { @@ -84,7 +84,7 @@ export default function TravelPage() { name: "City Culture Exploration", price: "Weekend Packages $149", variant: "Museums • Food • Shopping • Nightlife", - imageSrc: "http://img.b2bpic.net/free-photo/people-taking-selfie-near-red-car_23-2148039031.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/people-taking-selfie-near-red-car_23-2148039031.jpg?_wi=4", imageAlt: "City travel experience", }, { @@ -92,7 +92,7 @@ export default function TravelPage() { name: "International Teen Tour", price: "From $899 w/ Flights", variant: "Europe • Asia • Latin America", - imageSrc: "http://img.b2bpic.net/free-photo/people-taking-selfie-near-red-car_23-2148039031.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/people-taking-selfie-near-red-car_23-2148039031.jpg?_wi=5", imageAlt: "International destination", }, ]} -- 2.49.1