-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.js
90 lines (86 loc) · 1.83 KB
/
products.js
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
const products = [
{
title: "Uva Crimson",
price: 8.99,
category: "Frutas",
image: "./img/products/product_1.svg",
imageDescription: "Uva",
},
{
title: "Banana",
price: 5.69,
category: "Frutas",
image: "./img/products/product_2.svg",
imageDescription: "Banana",
},
{
title: "Mamão",
price: 4.99,
category: "Frutas",
image: "./img/products/product_3.svg",
imageDescription: "Mamaozin",
},
{
title: "Maçã",
price: 9.2,
category: "Frutas",
image: "./img/products/product_4.svg",
imageDescription: "Maçã",
},
{
title: "Refrigerante",
price: 8.99,
category: "Bebidas",
image: "./img/products/product_5.svg",
imageDescription: "Refri",
},
{
title: "Vinho",
price: 8.99,
category: "Bebidas",
image: "./img/products/product_6.svg",
imageDescription: "Vinho",
},
{
title: "Água Tônica",
price: 8.99,
category: "Bebidas",
image: "./img/products/product_7.svg",
imageDescription: "Água Tônica",
},
{
title: "Água de coco",
price: 8.99,
category: "Bebidas",
image: "./img/products/product_8.svg",
imageDescription: "Água de coco",
},
{
title: "Sabonete",
price: 8.99,
category: "Higiene",
image: "./img/products/product_9.svg",
imageDescription: "Sabonete",
},
{
title: "Detergente",
price: 8.99,
category: "Higiene",
image: "./img/products/product_10.svg",
imageDescription: "Detergente",
},
{
title: "Limpa superfícies",
price: 8.99,
category: "Higiene",
image: "./img/products/product_11.svg",
imageDescription: "Limpa superfícies",
},
{
title: "Lustra Móveis",
price: 8.99,
category: "Higiene",
image: "./img/products/product_12.svg ",
imageDescription: "Lustra Móveis",
},
];