Merge version_3 into main #3

Merged
bender merged 3 commits from version_3 into main 2026-06-08 10:10:58 +00:00
3 changed files with 8 additions and 8 deletions

View File

@@ -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) => {

View File

@@ -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,

View File

@@ -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) => {