diff --git a/src/app/cart/page.tsx b/src/app/cart/page.tsx index 498fb2e..d73d2fe 100644 --- a/src/app/cart/page.tsx +++ b/src/app/cart/page.tsx @@ -10,8 +10,8 @@ import React from 'react'; export default function CartPage() { // Dummy cart state const [cartItems, setCartItems] = React.useState([ - { id: 'prod-1', name: 'Opulent Silk Blouse', price: 899000, quantity: 1, imageSrc: 'http://img.b2bpic.net/free-photo/two-sexy-brunette-wearing-stylish-black-dresses-sunglasses-posing-near-terrace-cafe-city_613910-4745.jpg' }, - { id: 'prod-2', name: 'Golden Weave Skirt', price: 749000, quantity: 2, imageSrc: 'http://img.b2bpic.net/free-photo/street-face-beauty-stylish-city_1157-3793.jpg' }, + { id: 'prod-1', name: 'Opulent Silk Blouse', price: 899000, quantity: 1, imageSrc: 'http://img.b2bpic.net/free-photo/two-sexy-brunette-wearing-stylish-black-dresses-sunglasses-posing-near-terrace-cafe-city_613910-4745.jpg?_wi=2' }, + { id: 'prod-2', name: 'Golden Weave Skirt', price: 749000, quantity: 2, imageSrc: 'http://img.b2bpic.net/free-photo/street-face-beauty-stylish-city_1157-3793.jpg?_wi=2' }, ]); const updateQuantity = (id: string, delta: number) => { diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 5d92280..9187673 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -12,19 +12,19 @@ import React from 'react'; const products = [ { id: "prod-1", name: "Opulent Silk Blouse", price: "899,000 UZS", rating: 5, - reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/two-sexy-brunette-wearing-stylish-black-dresses-sunglasses-posing-near-terrace-cafe-city_613910-4745.jpg", imageAlt: "Luxury silk blouse", category: "Blouses" + reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/two-sexy-brunette-wearing-stylish-black-dresses-sunglasses-posing-near-terrace-cafe-city_613910-4745.jpg?_wi=1", imageAlt: "Luxury silk blouse", category: "Blouses" }, { id: "prod-2", name: "Golden Weave Skirt", price: "749,000 UZS", rating: 4, - reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/street-face-beauty-stylish-city_1157-3793.jpg", imageAlt: "Modern designer skirt", category: "Skirts" + reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/street-face-beauty-stylish-city_1157-3793.jpg?_wi=1", imageAlt: "Modern designer skirt", category: "Skirts" }, { id: "prod-3", name: "Midnight Glam Gown", price: "2,499,000 UZS", rating: 5, - reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/young-female-model-sleeping-underwear_1303-19139.jpg", imageAlt: "Elegant black dress", category: "Dresses" + reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/young-female-model-sleeping-underwear_1303-19139.jpg?_wi=1", imageAlt: "Elegant black dress", category: "Dresses" }, { id: "prod-4", name: "Imperial Gold Jacket", price: "1,599,000 UZS", rating: 4, - reviewCount: "80", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-walking-street_1303-25960.jpg", imageAlt: "Stylish women's jacket", category: "Jackets" + reviewCount: "80", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-walking-street_1303-25960.jpg?_wi=1", imageAlt: "Stylish women's jacket", category: "Jackets" }, { id: "prod-5", name: "Sleek Urban Trousers", price: "649,000 UZS", rating: 4, diff --git a/src/app/wishlist/page.tsx b/src/app/wishlist/page.tsx index 93e2fb2..0dd9a56 100644 --- a/src/app/wishlist/page.tsx +++ b/src/app/wishlist/page.tsx @@ -9,8 +9,8 @@ import React from 'react'; export default function WishlistPage() { const [wishlistItems, setWishlistItems] = React.useState([ - { id: 'prod-3', name: 'Midnight Glam Gown', price: 2499000, imageSrc: 'http://img.b2bpic.net/free-photo/young-female-model-sleeping-underwear_1303-19139.jpg' }, - { id: 'prod-4', name: 'Imperial Gold Jacket', price: 1599000, imageSrc: 'http://img.b2bpic.net/free-photo/young-woman-walking-street_1303-25960.jpg' }, + { id: 'prod-3', name: 'Midnight Glam Gown', price: 2499000, imageSrc: 'http://img.b2bpic.net/free-photo/young-female-model-sleeping-underwear_1303-19139.jpg?_wi=2' }, + { id: 'prod-4', name: 'Imperial Gold Jacket', price: 1599000, imageSrc: 'http://img.b2bpic.net/free-photo/young-woman-walking-street_1303-25960.jpg?_wi=2' }, ]); const removeFromWishlist = (id: string) => {