-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.js
More file actions
185 lines (183 loc) · 6.09 KB
/
products.js
File metadata and controls
185 lines (183 loc) · 6.09 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
const products = [
{
name: "Airpods",
image: "/images/airpods.jpg",
description:
"Bluetooth technology lets you connect it with compatible devices wirelessly High-quality AAC audio offers immersive listening experience Built-in microphone allows you to take calls while working",
brand: "Apple",
category: "Electronics",
price: 8999,
countInStock: 3,
rating: 4.5,
numReviews: 4,
},
{
name: "Fidget Spinner",
image: "/images/toy1.webp",
description:
"This Spinner is a top that combines the best of the Yeezy Boost 350 and the best of the Boost 350 V2. The upper features a full-length, responsive design, while the laces and tongue provide comfort and support.",
brand: "Toy Factory",
category: "Toys",
price: 99,
countInStock: 5,
rating: 2,
numReviews: 1,
},
{
name: "Cannon EOS 80D DSLR Camera",
image: "/images/camera.jpg",
description:
"Characterized by versatile imaging specs, the Canon EOS 80D further clarifies itself using a pair of robust focusing systems and an intuitive design",
brand: "Cannon",
category: "Electronics",
price: 9299,
countInStock: 5,
rating: 3,
numReviews: 3,
},
{
name: "NMD R1",
image: "/images/shoe1.jpeg",
description:
"The NMD R1 is a running shoe that combines the best of the NMD and the best of the R1. The upper features a full-length, responsive design, while the laces and tongue provide comfort and support.",
brand: "Nike",
category: "Shoes",
price: 2799,
countInStock: 5,
rating: 2.5,
numReviews: 3,
},
{
name: "Yeezy Boost 350 V2",
image: "/images/shoe2.jpeg",
description:
"The Yeezy Boost 350 V2 is a shoe that combines the best of the Yeezy Boost 350 and the best of the Boost 350 V2. The upper features a full-length, responsive design, while the laces and tongue provide comfort and support.",
brand: "Nike",
category: "Shoes",
price: 1799,
countInStock: 5,
rating: 3.8,
numReviews: 1,
},
{
name: "Adidas Joyride Run",
image: "/images/shoe3.jpeg",
description:
"The Adidas Joyride Run is a shoe that combines the best of the Yeezy Boost 350 and the best of the Boost 350 V2. The upper features a full-length, responsive design, while the laces and tongue provide comfort and support.",
brand: "Adidas",
category: "Shoes",
price: 1799,
countInStock: 5,
rating: 4,
numReviews: 1,
},
{
name: "Sony Playstation 4 Pro White",
image: "/images/playstation.jpg",
description:
"The ultimate home entertainment center starts with PlayStation. Whether you are into gaming, HD movies, television, music",
brand: "Sony",
category: "Electronics",
price: 3999,
countInStock: 10,
rating: 5,
numReviews: 3,
},
{
name: "Logitech G-Series Gaming Mouse",
image: "/images/mouse.jpg",
description:
"Get a better handle on your games with this Logitech LIGHTSYNC gaming mouse. The six programmable buttons allow customization for a smooth playing experience",
brand: "Logitech",
category: "Electronics",
price: 499,
countInStock: 7,
rating: 5,
numReviews: 2,
},
{
name: "Amazon Echo Dot 3rd Generation",
image: "/images/alexa.jpg",
description:
"Meet Echo Dot - Our most popular smart speaker with a fabric design. It is our most compact smart speaker that fits perfectly into small space",
brand: "Amazon",
category: "Electronics",
price: 29,
countInStock: 0,
rating: 1,
numReviews: 4,
},
{
name: "Skechers Classic Sneakers",
image: "/images/shoe4.jpeg",
description:
"The Sketchers Classic Sneakers is a shoe that combines the best of the Yeezy Boost 350 and the best of the Boost 350 V2. The upper features a full-length, responsive design, while the laces and tongue provide comfort and support.",
brand: "Adidas",
category: "Shoes",
price: 1799,
countInStock: 5,
rating: 4,
numReviews: 1,
},
{
name: "Georgette Fancy Tops",
image: "/images/top1.jpeg",
description:
"The Stylish Tops is a top that combines the best of the Yeezy Boost 350 and the best of the Boost 350 V2. The upper features a full-length, responsive design, while the laces and tongue provide comfort and support.",
brand: "Dolce & Gabbana",
category: "Clothing",
price: 1799,
countInStock: 5,
rating: 3.1,
numReviews: 1,
},
{
name: "iPhone 11 Pro 256GB Memory",
image: "/images/phone.jpg",
description:
"Introducing the iPhone 11 Pro. A transformative triple-camera system that adds tons of capability without complexity. An unprecedented leap in battery life",
brand: "Apple",
category: "Electronics",
price: 5999,
countInStock: 10,
rating: 3.0,
numReviews: 4,
},
{
name: "Stylish Tops",
image: "/images/top2.jpeg",
description:
"The Stylish Tops is a top that combines the best of the Yeezy Boost 350 and the best of the Boost 350 V2. The upper features a full-length, responsive design, while the laces and tongue provide comfort and support.",
brand: "Dolce & Gabbana",
category: "Clothing",
price: 1299,
countInStock: 5,
rating: 4.1,
numReviews: 2,
},
{
name: "Bomber Jacket",
image: "/images/men1.jpeg",
description:
"The Bomber Jacket is a top that combines the best of the Yeezy Boost 350 and the best of the Boost 350 V2. The upper features a full-length, responsive design, while the laces and tongue provide comfort and support.",
brand: "Adidas",
category: "Clothing",
price: 1799,
countInStock: 5,
rating: 1,
numReviews: 1,
},
{
name: "Gold Spinner",
image: "/images/toy2.jpeg",
description:
"This Spinner is a top that combines the best of the Yeezy Boost 350 and the best of the Boost 350 V2. The upper features a full-length, responsive design, while the laces and tongue provide comfort and support.",
brand: "Toy Factory",
category: "Toys",
price: 199,
countInStock: 5,
rating: 4,
numReviews: 1,
},
];
export default products;