forked from basir/node-javascript-ecommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
68 lines (68 loc) · 1.53 KB
/
Copy pathdata.js
File metadata and controls
68 lines (68 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
export default {
products: [
{
_id: '111111111111111111111111',
name: 'Hiskywin Full Zip Running Shirts Thermal Workout',
category: 'Shirts',
image: '/images/product-1.jpg',
price: 59,
brand: 'Hiskywin',
rating: 4.5,
numReviews: 10,
countInStock: 6,
},
{
_id: '2',
name: 'Nike Full-Zip Hoodie Mens Workout Sweatshirt',
category: 'Shirts',
image: '/images/product-2.jpg',
price: 70,
brand: 'Nike',
rating: 5,
numReviews: 51,
},
{
_id: '3',
name: 'Adidas Mens Long Sleeve Hoodie',
category: 'Shirts',
image: '/images/product-3.jpg',
price: 59,
brand: 'Adidas',
rating: 4,
numReviews: 45,
},
{
_id: '4',
name: 'Under Armour Mens Sportstyle Tricot Joggers',
category: 'Pants',
image: '/images/product-4.jpg',
price: 90,
brand: 'Under Armour',
rating: 2.5,
numReviews: 198,
countInStock: 6,
},
{
_id: '5',
name: 'Champion Mens Graphic Powerblend Fleece Jogger',
category: 'Pants',
image: '/images/product-5.jpg',
price: 119,
brand: 'Champion',
rating: 3.5,
numReviews: 89,
countInStock: 6,
},
{
_id: '6',
name: 'Aelfric Eden Mens Joggers Pants Long Multi-Pockets',
category: 'Pants',
image: '/images/product-6.jpg',
price: 85,
brand: 'Aelfric Eden',
rating: 4.5,
numReviews: 45,
countInStock: 6,
},
],
};