forked from JoinCODED/TASK-Express-IntroToExpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.js
More file actions
34 lines (33 loc) · 1.08 KB
/
products.js
File metadata and controls
34 lines (33 loc) · 1.08 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
const products = [
{
id: 1,
name: "Chicken Harness and Leash",
slug: "chicken-harness-and-leash",
image: "https://hips.hearstapps.com/vader-prod.s3.amazonaws.com/1565295718-41-Z274tCDL.jpg",
description: "This leash boasts a a durable, breathable leash that won't hurt your clucking friend.",
color: "red",
quantity: 4,
price:9
},
{
id: 2,
name: "The Hen Bag Handbag",
slug: "the-hen-bag-handbag",
image: "https://hips.hearstapps.com/vader-prod.s3.amazonaws.com/1571683417-rubber-chicken-purse-1571683378.jpg",
description: "Is that the latest Hermès bag straight off the runway? No, it's a rubber chicken purse.",
color: "yellow",
quantity: 9,
price:24
},
{
id:3,
name: "Pet Chicken Helmet",
slug: "pet-chicken-helmet",
image: "https://alitools.io/en/showcase/image?url=https%3A%2F%2Fae01.alicdn.com%2Fkf%2FHc9611807ce8e45959f2b83563d341239r.jpg",
description: "Prevent the chicken from smash and protect the chicken's head.",
color: "green",
quantity: 2,
price:2
}
]
module.exports = products;