-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.js
180 lines (179 loc) · 3.56 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
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
var products = [
{
id: 1,
name: 'BetterThan Burger',
description: 'Plant-based Patties.',
brand: 'BetterThan Meat',
category: ['hamburger', 'vegan'],
weight: 226,
price: 10.9,
available: true,
discount: 0
},
{
id: 2,
name: 'BetterThan Beef',
description: 'Plant-based Beef.',
brand: 'BetterThan Meat',
category: ['beef', 'vegan'],
weight: 453,
price: 15.9,
available: true,
discount: 0
},
{
id: 3,
name: 'GreenLife Burger',
description: 'Plant-based Pattie.',
brand: 'GreenLife',
category: ['hamburger'],
weight: 400,
price: 11.5,
available: true,
discount: 0
},
{
id: 4,
name: 'BetterThan Sausage',
description: 'Plant-based Sausage.',
brand: 'BetterThan Meat',
category: ['sausage', 'vegan'],
weight: 400,
price: 11.5,
available: true,
discount: 0
},
{
id: 5,
name: 'BetterThan Breakfast',
description: 'Plant sausage.',
brand: 'BetterThan Meat',
category: ['sausage', 'vegan', 'other'],
weight: 226,
price: 12.3,
available: true,
discount: 0
},
{
id: 6,
name: 'GreenLife Hot Dogs',
description: 'Plant-based Hot Dogs.',
brand: 'GreenLife',
category: ['sausage', 'vegan'],
weight: 340,
price: 9.7,
available: true,
discount: 0
},
{
id: 7,
name: 'GreenLife Tenders',
description: 'Plant-based Chicken.',
brand: 'GreenLife',
category: ['chicken', 'other', 'vegan'],
weight: 170,
price: 6.3,
available: true,
discount: 0
},
{
id: 8,
name: 'Vegan2.0 Ground',
description: 'Plant-based Chicken.',
brand: 'Vegan2.0',
category: ['beef', 'other', 'vegan'],
weight: 340,
price: 6.3,
available: true,
discount: 0
},
{
id: 9,
name: 'Grn GF Burger',
description: 'Plant-gluten free Patties.',
brand: 'Grn Veggie',
category: ['hamburger', 'vegan'],
weight: 300,
price: 8.85,
available: true,
discount: 0
},
{
id: 10,
name: 'Green MeatBalls',
description: 'Plant Meatballs.',
brand: 'Green Veggie',
category: ['beef', 'vegan'],
weight: 340,
price: 11.8,
available: true,
discount: 0
},
{
id: 11,
name: 'BetterThan Pepperoni',
description: 'Plant-based Pattie.',
brand: 'BetterThan',
category: ['other', 'sausage'],
weight: 400,
price: 11.5,
available: true,
discount: 0
},
{
id: 12,
name: 'Lentil Burger',
description: 'Lentil-based Burger.',
brand: 'No Brand',
category: ['burger', 'vegan'],
weight: 400,
price: 11.5,
available: true,
discount: 0
},
{
id: 13,
name: 'Mushroom Burger ',
description: 'Plant-based Patties.',
brand: 'Straight Farm',
category: ['hamburger', 'vegan'],
weight: 226,
price: 10.9,
available: true,
discount: 0
},
{
id: 14,
name: 'Fake Meatballs',
description: 'Plant-based balls.',
brand: 'Fake Meat',
category: ['other', 'vegan'],
weight: 453,
price: 15.9,
available: true,
discount: 0
},
{
id: 1,
name: 'BetterThan Burger',
description: 'Plant-based Patties.',
brand: 'BetterThan Meat',
category: ['hamburger', 'vegan'],
weight: 226,
price: 10.9,
available: true,
discount: 0
},
{
id: 2,
name: 'BetterThan Beef',
description: 'Plant-based Beef.',
brand: 'BetterThan Meat',
category: ['beef', 'vegan'],
weight: 453,
price: 15.9,
available: true,
discount: 0
}
];
// export { products };