diff --git a/src/app/marketplace/page.tsx b/src/app/marketplace/page.tsx index 4c709c0..69fd964 100644 --- a/src/app/marketplace/page.tsx +++ b/src/app/marketplace/page.tsx @@ -11,10 +11,10 @@ export default function MarketplacePage() { const [searchValue, setSearchValue] = useState(''); const products = [ - { id: '1', name: 'Organic Heirloom Seeds', price: '$12.00', rating: 5, imageSrc: 'http://img.b2bpic.net/free-photo/flat-lay-gardening-composition-with-copyspace_23-2148127877.jpg' }, - { id: '2', name: 'High-Yield Wheat Crop', price: '$45.00', rating: 4, imageSrc: 'http://img.b2bpic.net/free-photo/aerial-view-beautiful-country-landscape_181624-49667.jpg' }, - { id: '3', name: 'Professional Soil Mix', price: '$25.00', rating: 5, imageSrc: 'http://img.b2bpic.net/free-photo/close-up-male-hands-holding-soil-plant_23-2148814122.jpg' }, - { id: '4', name: 'Sustainable Fertilizer', price: '$30.00', rating: 4, imageSrc: 'http://img.b2bpic.net/free-photo/diverse-viking-men-outdoors_23-2151689965.jpg' } + { id: '1', name: 'Organic Heirloom Seeds', price: '$12.00', rating: 5, imageSrc: 'http://img.b2bpic.net/free-photo/flat-lay-gardening-composition-with-copyspace_23-2148127877.jpg?_wi=1' }, + { id: '2', name: 'High-Yield Wheat Crop', price: '$45.00', rating: 4, imageSrc: 'http://img.b2bpic.net/free-photo/aerial-view-beautiful-country-landscape_181624-49667.jpg?_wi=1' }, + { id: '3', name: 'Professional Soil Mix', price: '$25.00', rating: 5, imageSrc: 'http://img.b2bpic.net/free-photo/close-up-male-hands-holding-soil-plant_23-2148814122.jpg?_wi=1' }, + { id: '4', name: 'Sustainable Fertilizer', price: '$30.00', rating: 4, imageSrc: 'http://img.b2bpic.net/free-photo/diverse-viking-men-outdoors_23-2151689965.jpg?_wi=1' } ]; return ( diff --git a/src/app/page.tsx b/src/app/page.tsx index 19240e4..798811d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -58,17 +58,17 @@ export default function LandingPage() { ]} mediaItems={[ { - imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-beautiful-country-landscape_181624-49667.jpg", imageAlt: "Farm fields"}, + imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-beautiful-country-landscape_181624-49667.jpg?_wi=2", imageAlt: "Farm fields"}, { imageSrc: "http://img.b2bpic.net/free-photo/composition-fresh-vegetables-blurred-vegetable-garden-background_169016-39500.jpg", imageAlt: "Produce"}, { imageSrc: "http://img.b2bpic.net/free-photo/elevated-view-colorful-vegetables-wooden-container_23-2147926327.jpg", imageAlt: "Farmers market"}, { - imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-gardening-composition-with-copyspace_23-2148127877.jpg", imageAlt: "Seeds"}, + imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-gardening-composition-with-copyspace_23-2148127877.jpg?_wi=2", imageAlt: "Seeds"}, { - imageSrc: "http://img.b2bpic.net/free-photo/diverse-viking-men-outdoors_23-2151689965.jpg", imageAlt: "Farmers working"}, + imageSrc: "http://img.b2bpic.net/free-photo/diverse-viking-men-outdoors_23-2151689965.jpg?_wi=2", imageAlt: "Farmers working"}, { - imageSrc: "http://img.b2bpic.net/free-photo/close-up-male-hands-holding-soil-plant_23-2148814122.jpg", imageAlt: "Sprouts growing"}, + imageSrc: "http://img.b2bpic.net/free-photo/close-up-male-hands-holding-soil-plant_23-2148814122.jpg?_wi=2", imageAlt: "Sprouts growing"}, ]} />