first commit
This commit is contained in:
92
data/products.js
Normal file
92
data/products.js
Normal file
@ -0,0 +1,92 @@
|
||||
export const products = [
|
||||
{
|
||||
id: 1,
|
||||
imgSrc: "/images/shop/product-1.jpg",
|
||||
title: "Apple iPad Pro 11 inch",
|
||||
price: 299.0,
|
||||
oldPrice: null,
|
||||
width: 366,
|
||||
height: 360,
|
||||
filterBrands: ["samsung", "xiaomi", "nokia", "sony", "oppo"],
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
imgSrc: "/images/shop/product-2.jpg",
|
||||
title: "Xbox Wireless Controller",
|
||||
price: 39.0,
|
||||
oldPrice: 49.0,
|
||||
width: 367,
|
||||
height: 360,
|
||||
filterBrands: ["apple", "nokia", "sony", "oppo"],
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
imgSrc: "/images/shop/product-3.jpg",
|
||||
title: "Mac Studio - M2 Ultra",
|
||||
price: 399.0,
|
||||
oldPrice: 429.0,
|
||||
width: 366,
|
||||
height: 360,
|
||||
filterBrands: ["apple", "samsung", "xiaomi", "oppo"],
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
imgSrc: "/images/shop/product-4.jpg",
|
||||
title: "Laptop ASUS ZenBook Duo UX481FL",
|
||||
price: 399.0,
|
||||
oldPrice: null,
|
||||
width: 367,
|
||||
height: 360,
|
||||
filterBrands: ["xiaomi", "nokia", "sony", "oppo"],
|
||||
},
|
||||
{
|
||||
id: 5,
|
||||
imgSrc: "/images/shop/product-5.jpg",
|
||||
title: "Samsung Galaxy S20+",
|
||||
price: 199.0,
|
||||
oldPrice: 219.0,
|
||||
width: 367,
|
||||
height: 366,
|
||||
filterBrands: ["apple", "samsung", "xiaomi", "oppo"],
|
||||
},
|
||||
{
|
||||
id: 6,
|
||||
imgSrc: "/images/shop/product-6.jpg",
|
||||
title: "Apple Watch Series 5",
|
||||
price: 299.0,
|
||||
oldPrice: null,
|
||||
width: 367,
|
||||
height: 366,
|
||||
filterBrands: ["apple", "samsung", "xiaomi", "nokia", "sony", "oppo"],
|
||||
},
|
||||
{
|
||||
id: 7,
|
||||
imgSrc: "/images/shop/product-7.jpg",
|
||||
title: "AirPods Pro 2",
|
||||
price: 199.0,
|
||||
oldPrice: null,
|
||||
width: 367,
|
||||
height: 360,
|
||||
filterBrands: ["xiaomi", "nokia", "sony", "oppo"],
|
||||
},
|
||||
{
|
||||
id: 8,
|
||||
imgSrc: "/images/shop/product-8.jpg",
|
||||
title: "iMac M3 24 inch 8GB 256GB 8GPU",
|
||||
price: 99.0,
|
||||
oldPrice: 299.0,
|
||||
width: 367,
|
||||
height: 360,
|
||||
filterBrands: ["apple", "nokia", "sony", "oppo"],
|
||||
},
|
||||
{
|
||||
id: 9,
|
||||
imgSrc: "/images/shop/product-9.jpg",
|
||||
title: "Mac Studio",
|
||||
price: 99.0,
|
||||
oldPrice: null,
|
||||
width: 367,
|
||||
height: 360,
|
||||
filterBrands: ["apple", "samsung", "xiaomi", "nokia", "sony", "oppo"],
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user