-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
331 lines (331 loc) · 9.74 KB
/
db.json
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
{
"dishes": [
{
"id": 0,
"name": "Pizza",
"image": "images/pizza.png",
"category": "mains",
"label": "Hot",
"price": "4.99",
"featured": true,
"description": "Pizza, dish of Italian origin consisting of a flattened disk of bread dough topped with some combination of olive oil, oregano, tomato, olives, mozzarella or other cheese, and many other ingredients."
},
{
"id": 1,
"name": "Pasta",
"image": "images/pasta.png",
"category": "appetizer",
"label": "",
"price": "1.99",
"featured": false,
"description": "Ranked as the BEST PASTA IN TOWN. We have a large variety of sauces with pure italian ingredients, perfect for your apetit."
},
{
"id": 2,
"name": "Bruschetta",
"image": "images/bruschetta.png",
"category": "appetizer",
"label": "New",
"price": "1.99",
"featured": false,
"description": "A quintessential Bruschetta experience, is it just a slice of bread or is it a heavenly whole dish?"
},
{
"id": 3,
"name": "Italian Wine",
"image": "images/wine.png",
"category": "dessert",
"label": "",
"price": "2.99",
"featured": false,
"description": "A delectable, semi-sweet italian wine is what represents us, beside other 30+ wines."
}
],
"comments": [
{
"id": 0,
"dishId": 0,
"rating": 5,
"comment": "Imagine Italy, but in New York!",
"author": "John Smith",
"date": "2019-10-16T17:57:28.556094Z"
},
{
"id": 1,
"dishId": 0,
"rating": 4,
"comment": "Sends anyone to heaven, I wish I could get my mother-in-law to eat it!",
"author": "Alex McDonald",
"date": "2019-09-05T17:57:28.556094Z"
},
{
"id": 2,
"dishId": 0,
"rating": 3,
"comment": "Eat it, trust me, you want to!",
"author": "Anna Anderson",
"date": "2019-02-13T17:57:28.556094Z"
},
{
"id": 3,
"dishId": 0,
"rating": 4,
"comment": "Ultimate, Reaching for the stars!",
"author": "Hayley Johnson",
"date": "2020-12-02T17:57:28.556094Z"
},
{
"id": 4,
"dishId": 0,
"rating": 2,
"comment": "It's the day you won't forget what you ate!",
"author": "Cesar Harrison",
"date": "2020-12-02T17:57:28.556094Z"
},
{
"id": 5,
"dishId": 1,
"rating": 5,
"comment": "Imagine all the pasta, living in Alberto Ristorante!",
"author": "Claire Brown",
"date": "2020-10-16T17:57:28.556094Z"
},
{
"id": 6,
"dishId": 1,
"rating": 4,
"comment": "Sends anyone to heaven, I wish I could get my mother-in-law to eat it!",
"author": "Paul McVites",
"date": "2019-09-05T17:57:28.556094Z"
},
{
"id": 7,
"dishId": 1,
"rating": 3,
"comment": "Eat it, just eat it!",
"author": "Michael Jaikishan",
"date": "2019-02-13T17:57:28.556094Z"
},
{
"id": 8,
"dishId": 1,
"rating": 4,
"comment": "Ultimate, Reaching for the stars!",
"author": "Ringo Starry",
"date": "2019-12-02T17:57:28.556094Z"
},
{
"id": 9,
"dishId": 1,
"rating": 2,
"comment": "It's your birthday, we're gonna party!",
"author": "25 Cent",
"date": "2020-12-02T17:57:28.556094Z"
},
{
"id": 10,
"dishId": 2,
"rating": 5,
"comment": "Imagine all the eatables, living in conFusion!",
"author": "John Lemon",
"date": "2020-10-16T17:57:28.556094Z"
},
{
"id": 11,
"dishId": 2,
"rating": 4,
"comment": "Sends anyone to heaven, I wish I could get my mother-in-law to eat it!",
"author": "Paul McVites",
"date": "2020-09-05T17:57:28.556094Z"
},
{
"id": 12,
"dishId": 2,
"rating": 3,
"comment": "Eat it, just eat it!",
"author": "Michael Jaikishan",
"date": "2019-02-13T17:57:28.556094Z"
},
{
"id": 13,
"dishId": 2,
"rating": 4,
"comment": "Ultimate, Reaching for the stars!",
"author": "Ringo Starry",
"date": "2020-12-02T17:57:28.556094Z"
},
{
"id": 14,
"dishId": 2,
"rating": 2,
"comment": "It's your birthday, we're gonna party!",
"author": "25 Cent",
"date": "2020-12-02T17:57:28.556094Z"
},
{
"id": 15,
"dishId": 3,
"rating": 5,
"comment": "Imagine all the eatables, living in conFusion!",
"author": "John Lemon",
"date": "2012-10-16T17:57:28.556094Z"
},
{
"id": 16,
"dishId": 3,
"rating": 4,
"comment": "Sends anyone to heaven, I wish I could get my mother-in-law to eat it!",
"author": "Paul McVites",
"date": "2014-09-05T17:57:28.556094Z"
},
{
"id": 17,
"dishId": 3,
"rating": 3,
"comment": "Eat it, just eat it!",
"author": "Michael Jaikishan",
"date": "2015-02-13T17:57:28.556094Z"
},
{
"id": 18,
"dishId": 3,
"rating": 4,
"comment": "Ultimate, Reaching for the stars!",
"author": "Ringo Starry",
"date": "2013-12-02T17:57:28.556094Z"
},
{
"id": 19,
"dishId": 3,
"rating": 2,
"comment": "It's your birthday, we're gonna party!",
"author": "25 Cent",
"date": "2020-12-02T17:57:28.556094Z"
},
{
"dishId": 0,
"rating": "4",
"author": "Dariana",
"comment": "So goooood!",
"date": "2021-03-03T07:09:34.644Z",
"id": 20
},
{
"dishId": 2,
"rating": "4",
"author": "Farcau Casian",
"comment": "The best I've had",
"date": "2021-03-03T07:17:29.460Z",
"id": 21
},
{
"dishId": 3,
"rating": "5",
"author": "Maghiar Anto",
"comment": "foarte frumos, bun vin",
"date": "2021-05-26T07:05:42.481Z",
"id": 22
},
{
"dishId": 3,
"author": "DarianucA",
"comment": "Cel mai aromat vin",
"date": "2021-05-26T07:06:29.864Z",
"id": 23
},
{
"dishId": 1,
"rating": "5",
"author": "Kabai Timea",
"comment": "foarte bun",
"date": "2021-05-26T07:43:10.633Z",
"id": 24
},
{
"dishId": 0,
"rating": "4",
"author": "David",
"comment": "almost perfect\n",
"date": "2021-08-11T17:26:50.397Z",
"id": 25
},
{
"dishId": 1,
"rating": "4",
"author": "John Doe",
"comment": "Best pasta in the world!",
"date": "2021-09-06T18:33:27.255Z",
"id": 26
},
{
"dishId": 1,
"rating": "5",
"author": "Timo",
"comment": "I am full of pasta",
"date": "2021-09-06T19:32:18.189Z",
"id": 27
}
],
"promotions": [
{
"id": 0,
"name": "Weekend Grand Buffet",
"image": "images/buffet.png",
"label": "New",
"price": "19.99",
"featured": true,
"description": "Featuring mouthwatering combinations with a choice of five different salads, six enticing appetizers, six main entrees and five choicest desserts. Free flowing bubbly and soft drinks. All for just $19.99 per person "
}
],
"leaders": [
{
"id": 0,
"name": "Cristina Rodriguez",
"image": "images/cristina.png",
"designation": "Chief Epicurious Officer",
"abbr": "CEO",
"featured": false,
"description": "Our CEO, Cristina, credits her hardworking East Asian immigrant parents who undertook the arduous journey to the shores of America with the intention of giving their children the best future. His mother's wizardy in the kitchen whipping up the tastiest dishes with whatever is available inexpensively at the supermarket, was his first inspiration to create the fusion cuisines for which The Frying Pan became well known. He brings his zeal for fusion cuisines to this restaurant, pioneering cross-cultural culinary connections."
},
{
"id": 1,
"name": "Cameron Witherspoon",
"image": "images/cameron.png",
"designation": "Chief Food Officer",
"abbr": "CFO",
"featured": false,
"description": "Our CFO, Cam, as he is affectionately referred to by his colleagues, comes from a long established family tradition in farming and produce. His experiences growing up on a farm in the Australian outback gave him great appreciation for varieties of food sources. As he puts it in his own words, Everything that runs, wins, and everything that stays, pays!"
},
{
"id": 2,
"name": "Janice L'Fondeur",
"image": "images/janice.png",
"designation": "Chief Taste Officer",
"abbr": "CTO",
"featured": false,
"description": "Blessed with the most discerning gustatory sense, Jan, our CFO, personally ensures that every dish that we serve meets her exacting tastes. Our chefs dread the tongue lashing that ensues if their dish does not meet his exacting standards. He lives by his motto, You click only if you survive my lick."
},
{
"id": 3,
"name": "Jason Pritchett",
"image": "images/jason.png",
"designation": "Executive Chef",
"abbr": "EC",
"featured": true,
"description": "Award winning three-star Michelin chef with wide International experience having worked closely with whos-who in the culinary world, he specializes in creating mouthwatering Indo-Italian fusion experiences. He says, Put together the cuisines from the two craziest cultures, and you get a winning hit! Amma Mia!"
}
],
"feedback": [
{
"firstname": "fdas",
"lastname": "afds",
"telnum": "134113",
"email": "[email protected]",
"agree": true,
"contactType": "Email",
"message": "afadsfds",
"date": "2017-12-04T09:41:49.890Z",
"id": 1
}
]
}