export const products = [ { id: 1, category: "Shoes", title: "Nike Air Sneakers", price: 45.0, // Discounted price originalPrice: 55.0, // Original price image: "/assets/img/photos/sh1.jpg", image2x: "/assets/img/photos/sh1@2x.jpg", rating: "five", badge: "Sale!", badgeColor: "rgba(209,107,134)", }, { id: 2, category: "Electronics", title: "Apple Watch", price: 55.0, image: "/assets/img/photos/sh2.jpg", image2x: "/assets/img/photos/sh2@2x.jpg", rating: "four", }, { id: 3, category: "Electronics", title: "Headphones", price: 55.0, image: "/assets/img/photos/sh3.jpg", image2x: "/assets/img/photos/sh3@2x.jpg", rating: "three", badge: "New!", badgeColor: "rgba(84,168,199)", }, { id: 4, category: "Shoes", title: "Colorful Sneakers", price: 55.0, image: "/assets/img/photos/sh4.jpg", image2x: "/assets/img/photos/sh4@2x.jpg", rating: "three", }, { id: 5, category: "Electronics", title: "Polaroid Camera", price: 55.0, image: "/assets/img/photos/sh5.jpg", image2x: "/assets/img/photos/sh5@2x.jpg", rating: "one", }, { id: 6, category: "Cosmetics", title: "Curology Cleanser", price: 55.0, image: "/assets/img/photos/sh6.jpg", image2x: "/assets/img/photos/sh6@2x.jpg", rating: "two", }, { id: 7, category: "Home & Kitchen", title: "Q&Q Wall Clock", price: 55.0, image: "/assets/img/photos/sh7.jpg", image2x: "/assets/img/photos/sh7@2x.jpg", rating: "four", }, { id: 8, category: "Electronics", title: "Earphones", price: 55.0, image: "/assets/img/photos/sh8.jpg", image2x: "/assets/img/photos/sh8@2x.jpg", }, { id: 9, category: "Accessories", title: "Apple Watch Milano Loop", price: 55.0, image: "/assets/img/photos/sh9.jpg", image2x: "/assets/img/photos/sh9@2x.jpg", rating: "five", }, ]; export const categories = [ { id: "clothing", name: "Clothing", count: 21, subcategories: ["Dresses", "Knitwear", "Jeans"], expanded: true, }, { id: "electronics", name: "Electronics", count: 19, subcategories: ["Headphones", "Computers", "Cameras", "Annually"], expanded: false, }, { id: "shoes", name: "Shoes", count: 12, subcategories: ["Sneakers", "Sandals", "Boots"], expanded: false, }, { id: "home", name: "Home & Kitchen", count: 16, subcategories: ["Clocks", "Kettles", "Kitchenware"], expanded: false, }, ];