diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index fa688c2..3758c1a 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -10,10 +10,10 @@ export default function CartPage() { const [cartItems, setCartItems] = useState([ { id: "prod-1", name: "Saffron Elixir Serum", price: "$120.00", quantity: 1, - imageSrc: "http://img.b2bpic.net/free-photo/arrangement-with-make-up-container_23-2149030340.jpg", imageAlt: "Saffron Elixir Serum bottle"}, + imageSrc: "http://img.b2bpic.net/free-photo/arrangement-with-make-up-container_23-2149030340.jpg?_wi=2", imageAlt: "Saffron Elixir Serum bottle"}, { id: "prod-2", name: "Rose Hydrating Mist", price: "$65.00", quantity: 2, - imageSrc: "http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669138.jpg", imageAlt: "Rose Hydrating Mist spray bottle"}, + imageSrc: "http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669138.jpg?_wi=2", imageAlt: "Rose Hydrating Mist spray bottle"}, ]); const handleQuantityChange = (id: string, newQuantity: number) => { diff --git a/src/app/page.tsx b/src/app/page.tsx index 3d6be3f..d2f5c97 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -132,9 +132,9 @@ export default function LandingPage() { carouselMode="buttons" products={[ { - id: "prod-1", name: "Saffron Elixir Serum", price: "$120.00", variant: "30ml", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-with-make-up-container_23-2149030340.jpg", imageAlt: "Saffron Elixir Serum bottle"}, + id: "prod-1", name: "Saffron Elixir Serum", price: "$120.00", variant: "30ml", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-with-make-up-container_23-2149030340.jpg?_wi=1", imageAlt: "Saffron Elixir Serum bottle"}, { - id: "prod-2", name: "Rose Hydrating Mist", price: "$65.00", variant: "100ml", imageSrc: "http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669138.jpg", imageAlt: "Rose Hydrating Mist spray bottle"}, + id: "prod-2", name: "Rose Hydrating Mist", price: "$65.00", variant: "100ml", imageSrc: "http://img.b2bpic.net/free-photo/ecofriendly-beauty-product_23-2150669138.jpg?_wi=1", imageAlt: "Rose Hydrating Mist spray bottle"}, { id: "prod-3", name: "Persian Silk Face Cream", price: "$150.00", variant: "50g", imageSrc: "http://img.b2bpic.net/free-photo/cosmetic-tube-product-with-gift-box-balloons-black-background_187299-46830.jpg", imageAlt: "Persian Silk Face Cream jar"}, {