diff --git a/src/app/my-work/page.tsx b/src/app/my-work/page.tsx index 00c377d..9acd645 100644 --- a/src/app/my-work/page.tsx +++ b/src/app/my-work/page.tsx @@ -38,13 +38,13 @@ export default function MyWorkPage() { const allProducts = [ { id: "1", brand: "Luxury Residential", name: "Downtown Penthouse", price: "Featured Project", rating: 5, - reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg", imageAlt: "Downtown penthouse photography"}, + reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=2", imageAlt: "Downtown penthouse photography"}, { id: "2", brand: "Commercial Real Estate", name: "Modern Office Space", price: "Featured Project", rating: 5, - reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/lobby-condominium-building_1262-3037.jpg", imageAlt: "Modern office space photography"}, + reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/lobby-condominium-building_1262-3037.jpg?_wi=2", imageAlt: "Modern office space photography"}, { id: "3", brand: "Family Homes", name: "Suburban Estate", price: "Featured Project", rating: 5, - reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/modern-suburban-family-home-with-manicured-lawn_84443-74083.jpg", imageAlt: "Suburban estate photography"}, + reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/modern-suburban-family-home-with-manicured-lawn_84443-74083.jpg?_wi=2", imageAlt: "Suburban estate photography"}, ...uploadedProducts, ]; diff --git a/src/app/page.tsx b/src/app/page.tsx index 7496c6a..da44549 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -105,13 +105,13 @@ export default function LandingPage() { products={[ { id: "1", brand: "Luxury Residential", name: "Downtown Penthouse", price: "Featured Project", rating: 5, - reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg", imageAlt: "Downtown penthouse photography"}, + reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/attractive-woman-reading-magazine-near-panoramic-window_7502-9287.jpg?_wi=1", imageAlt: "Downtown penthouse photography"}, { id: "2", brand: "Commercial Real Estate", name: "Modern Office Space", price: "Featured Project", rating: 5, - reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/lobby-condominium-building_1262-3037.jpg", imageAlt: "Modern office space photography"}, + reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/lobby-condominium-building_1262-3037.jpg?_wi=1", imageAlt: "Modern office space photography"}, { id: "3", brand: "Family Homes", name: "Suburban Estate", price: "Featured Project", rating: 5, - reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/modern-suburban-family-home-with-manicured-lawn_84443-74083.jpg", imageAlt: "Suburban estate photography"}, + reviewCount: "Sold", imageSrc: "http://img.b2bpic.net/free-photo/modern-suburban-family-home-with-manicured-lawn_84443-74083.jpg?_wi=1", imageAlt: "Suburban estate photography"}, ]} />