From 01a14bf559dbcf3eae47df7be61209072d4e7b96 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 20:18:43 +0000 Subject: [PATCH 1/3] Update src/app/gallery/page.tsx --- src/app/gallery/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx index 5bae894..d37f8cc 100644 --- a/src/app/gallery/page.tsx +++ b/src/app/gallery/page.tsx @@ -11,16 +11,16 @@ export default function GalleryPage() { const galleryFeatures = [ { id: 1, - title: "Main Dining Area", description: "Our spacious and elegantly designed main dining hall with ambient lighting and comfortable seating for families and groups.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-table-with-elegant-setting-restaurant-evening_181624-24647.jpg"}, + title: "Main Dining Area", description: "Our spacious and elegantly designed main dining hall with ambient lighting and comfortable seating for families and groups.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-table-with-elegant-setting-restaurant-evening_181624-24647.jpg?_wi=2"}, { id: 2, - title: "Rooftop Seating", description: "Enjoy dining under the stars on our rooftop terrace with a panoramic view of Jhenaidah's evening skyline.", imageSrc: "http://img.b2bpic.net/free-photo/beach-restaurant-evening_661209-253.jpg"}, + title: "Rooftop Seating", description: "Enjoy dining under the stars on our rooftop terrace with a panoramic view of Jhenaidah's evening skyline.", imageSrc: "http://img.b2bpic.net/free-photo/beach-restaurant-evening_661209-253.jpg?_wi=2"}, { id: 3, - title: "Intimate Corners", description: "Cozy nooks perfect for couples and small gatherings, designed for intimate conversations and special moments.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-pregnancy-young-family-pregnant-woman-man-happy-couple-wife-husband_1328-5073.jpg"}, + title: "Intimate Corners", description: "Cozy nooks perfect for couples and small gatherings, designed for intimate conversations and special moments.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-pregnancy-young-family-pregnant-woman-man-happy-couple-wife-husband_1328-5073.jpg?_wi=2"}, { id: 4, - title: "Kitchen Showcase", description: "Our open kitchen concept allows you to see our expert chefs preparing fresh pizzas and authentic dishes.", imageSrc: "http://img.b2bpic.net/free-photo/cropped-photo-baker-holding-fresh-baked-pizza-laying-metallic-shovel_651396-860.jpg"}, + title: "Kitchen Showcase", description: "Our open kitchen concept allows you to see our expert chefs preparing fresh pizzas and authentic dishes.", imageSrc: "http://img.b2bpic.net/free-photo/cropped-photo-baker-holding-fresh-baked-pizza-laying-metallic-shovel_651396-860.jpg?_wi=2"}, ]; return ( -- 2.49.1 From bd713e9529d36ea01d64d239288b37f5181d2f00 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 20:18:44 +0000 Subject: [PATCH 2/3] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 5cf9f3e..929441e 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -11,22 +11,22 @@ export default function MenuPage() { const menuProducts = [ { id: "1", brand: "Roof Royal Signature", name: "Margherita Premium Pizza", price: "৳420", rating: 5, - reviewCount: "248", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-traditional-italian-pizza_1328-3992.jpg"}, + reviewCount: "248", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-traditional-italian-pizza_1328-3992.jpg?_wi=2"}, { id: "2", brand: "Roof Royal Signature", name: "Pepperoni & Cheese Delight", price: "৳520", rating: 5, - reviewCount: "312", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-composition-with-hot-pepperoni-pizza-wooden-table_632805-19.jpg"}, + reviewCount: "312", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-composition-with-hot-pepperoni-pizza-wooden-table_632805-19.jpg?_wi=2"}, { id: "3", brand: "Roof Royal Specialty", name: "Chicken Tikka Pizza", price: "৳580", rating: 5, - reviewCount: "189", imageSrc: "http://img.b2bpic.net/free-photo/chicken-pizza-with-bell-peppers-herbs-barbecue-sauce_140725-8379.jpg"}, + reviewCount: "189", imageSrc: "http://img.b2bpic.net/free-photo/chicken-pizza-with-bell-peppers-herbs-barbecue-sauce_140725-8379.jpg?_wi=2"}, { id: "4", brand: "Roof Royal Broth", name: "Clear Soup with Vegetables", price: "৳180", rating: 5, - reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/minestrone-soup-table_140725-799.jpg"}, + reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/minestrone-soup-table_140725-799.jpg?_wi=2"}, { id: "5", brand: "Roof Royal Specialty", name: "Chicken & Prawn Wontons", price: "৳220", rating: 5, - reviewCount: "198", imageSrc: "http://img.b2bpic.net/free-photo/khinkali-with-meat-glass-red-wine_140725-10961.jpg"}, + reviewCount: "198", imageSrc: "http://img.b2bpic.net/free-photo/khinkali-with-meat-glass-red-wine_140725-10961.jpg?_wi=2"}, { id: "6", brand: "Roof Royal Beverages", name: "Fresh Mango Smoothie", price: "৳120", rating: 5, - reviewCount: "267", imageSrc: "http://img.b2bpic.net/free-photo/fresh-mango-smoothie_1339-1485.jpg"}, + reviewCount: "267", imageSrc: "http://img.b2bpic.net/free-photo/fresh-mango-smoothie_1339-1485.jpg?_wi=2"}, ]; return ( -- 2.49.1 From b0b1a048bd5daef3bd8bf07a108d5e0b779f6471 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 2 Mar 2026 20:18:45 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1aa9f37..dea9c13 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -25,37 +25,37 @@ export default function HomePage() { const galleryFeatures = [ { id: 1, - title: "Main Dining Area", description: "Our spacious and elegantly designed main dining hall with ambient lighting and comfortable seating for families and groups.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-table-with-elegant-setting-restaurant-evening_181624-24647.jpg"}, + title: "Main Dining Area", description: "Our spacious and elegantly designed main dining hall with ambient lighting and comfortable seating for families and groups.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-shot-table-with-elegant-setting-restaurant-evening_181624-24647.jpg?_wi=1"}, { id: 2, - title: "Rooftop Seating", description: "Enjoy dining under the stars on our rooftop terrace with a panoramic view of Jhenaidah's evening skyline.", imageSrc: "http://img.b2bpic.net/free-photo/beach-restaurant-evening_661209-253.jpg"}, + title: "Rooftop Seating", description: "Enjoy dining under the stars on our rooftop terrace with a panoramic view of Jhenaidah's evening skyline.", imageSrc: "http://img.b2bpic.net/free-photo/beach-restaurant-evening_661209-253.jpg?_wi=1"}, { id: 3, - title: "Intimate Corners", description: "Cozy nooks perfect for couples and small gatherings, designed for intimate conversations and special moments.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-pregnancy-young-family-pregnant-woman-man-happy-couple-wife-husband_1328-5073.jpg"}, + title: "Intimate Corners", description: "Cozy nooks perfect for couples and small gatherings, designed for intimate conversations and special moments.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-pregnancy-young-family-pregnant-woman-man-happy-couple-wife-husband_1328-5073.jpg?_wi=1"}, { id: 4, - title: "Kitchen Showcase", description: "Our open kitchen concept allows you to see our expert chefs preparing fresh pizzas and authentic dishes.", imageSrc: "http://img.b2bpic.net/free-photo/cropped-photo-baker-holding-fresh-baked-pizza-laying-metallic-shovel_651396-860.jpg"}, + title: "Kitchen Showcase", description: "Our open kitchen concept allows you to see our expert chefs preparing fresh pizzas and authentic dishes.", imageSrc: "http://img.b2bpic.net/free-photo/cropped-photo-baker-holding-fresh-baked-pizza-laying-metallic-shovel_651396-860.jpg?_wi=1"}, ]; const menuProducts = [ { id: "1", brand: "Roof Royal Signature", name: "Margherita Premium Pizza", price: "৳420", rating: 5, - reviewCount: "248", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-traditional-italian-pizza_1328-3992.jpg"}, + reviewCount: "248", imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-traditional-italian-pizza_1328-3992.jpg?_wi=1"}, { id: "2", brand: "Roof Royal Signature", name: "Pepperoni & Cheese Delight", price: "৳520", rating: 5, - reviewCount: "312", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-composition-with-hot-pepperoni-pizza-wooden-table_632805-19.jpg"}, + reviewCount: "312", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-composition-with-hot-pepperoni-pizza-wooden-table_632805-19.jpg?_wi=1"}, { id: "3", brand: "Roof Royal Specialty", name: "Chicken Tikka Pizza", price: "৳580", rating: 5, - reviewCount: "189", imageSrc: "http://img.b2bpic.net/free-photo/chicken-pizza-with-bell-peppers-herbs-barbecue-sauce_140725-8379.jpg"}, + reviewCount: "189", imageSrc: "http://img.b2bpic.net/free-photo/chicken-pizza-with-bell-peppers-herbs-barbecue-sauce_140725-8379.jpg?_wi=1"}, { id: "4", brand: "Roof Royal Broth", name: "Clear Soup with Vegetables", price: "৳180", rating: 5, - reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/minestrone-soup-table_140725-799.jpg"}, + reviewCount: "156", imageSrc: "http://img.b2bpic.net/free-photo/minestrone-soup-table_140725-799.jpg?_wi=1"}, { id: "5", brand: "Roof Royal Specialty", name: "Chicken & Prawn Wontons", price: "৳220", rating: 5, - reviewCount: "198", imageSrc: "http://img.b2bpic.net/free-photo/khinkali-with-meat-glass-red-wine_140725-10961.jpg"}, + reviewCount: "198", imageSrc: "http://img.b2bpic.net/free-photo/khinkali-with-meat-glass-red-wine_140725-10961.jpg?_wi=1"}, { id: "6", brand: "Roof Royal Beverages", name: "Fresh Mango Smoothie", price: "৳120", rating: 5, - reviewCount: "267", imageSrc: "http://img.b2bpic.net/free-photo/fresh-mango-smoothie_1339-1485.jpg"}, + reviewCount: "267", imageSrc: "http://img.b2bpic.net/free-photo/fresh-mango-smoothie_1339-1485.jpg?_wi=1"}, ]; const testimonialAvatars = [ -- 2.49.1