forked from coryhouse/react-restaurant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
172 lines (172 loc) · 4.8 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
{
"foods": [
{
"id": 1,
"name": "Burger",
"image": "burger.jpg",
"price": 8.99,
"description": "This ain't your average burger. Topped with our tangy cheddar cheese sauce, fresh lettuce, and tomato.",
"tags": ["Lunch", "Dinner"]
},
{
"id": 2,
"name": "Banana Blueberry French Toast",
"image": "banana-french-toast.jpg",
"price": 9.99,
"description": "Delicious french toast with banana and blueberry.",
"tags": ["Breakfast"]
},
{
"id": 3,
"name": "Cajun Pasta",
"image": "cajun-pasta.jpg",
"price": 16.99,
"description": "Creole-style pasta that's guaranteed to make you sweat.",
"tags": ["Lunch", "Dinner", "Spicy"]
},
{
"id": 4,
"name": "Charcuterie Board",
"image": "charcuterie.jpg",
"price": 14.99,
"description": "Delicious assortment of locally-sourced meats, cheeses, and spreads.",
"tags": ["Appetizer"]
},
{
"id": 5,
"name": "Raspberry Cheesecake",
"image": "cheesecake.jpg",
"price": 7.99,
"description": "Heavenly cheesecake with a sweet raspberry topping.",
"tags": ["Dessert"]
},
{
"id": 6,
"name": "Chicken Slammer",
"image": "chicken-slammer.jpg",
"price": 11.99,
"description": "Our outrageous chicken sandwich topped with pickled onions and jalapenos.",
"tags": ["Lunch", "Dinner", "Spicy"]
},
{
"id": 7,
"name": "Death by Chocolate",
"image": "death-by-chocolate.jpg",
"price": 8.99,
"description": "Decadent chocolate pudding topped with chocolate cookies, chocolate frosting, and whipped cream.",
"tags": ["Dessert"]
},
{
"id": 8,
"name": "Pile 'O Donuts",
"image": "donuts.jpg",
"price": 6.99,
"description": "Delicious assortment of unique donuts. Guaranteed to please!",
"tags": ["Dessert"]
},
{
"id": 9,
"name": "Italian Meatballs",
"image": "italian-meatballs.jpg",
"description": "Spiced meatballs served with a rich tomato sauce.",
"price": 13.99,
"tags": ["Dinner"]
},
{
"id": 10,
"name": "Lamb Chop",
"image": "lamb-chop.jpg",
"description": "Delicious lamb chop topped with a Mango chutney.",
"price": 19.99,
"tags": ["Dinner"]
},
{
"id": 11,
"name": "Mango Lassi",
"image": "mango-lassi.jpg",
"description": "Creamy Mango-flavored delight, served ice cold.",
"price": 4.99,
"tags": ["Drink"]
},
{
"id": 12,
"name": "Mojito",
"image": "mojito.jpg",
"description": "A refreshing minty cocktail.",
"price": 6.99,
"tags": ["Drink", "Alcoholic"]
},
{
"id": 13,
"name": "Old Fashioned",
"image": "old-fashioned.jpg",
"description": "A classic cocktail with a twist.",
"price": 7.99,
"tags": ["Drink", "Alcoholic"]
},
{
"id": 14,
"name": "Pesto Bowtie Pasta",
"image": "pesto-bowtie-pasta.jpg",
"description": "Delicious whole wheat pasta topped with our zesty pesto sauce.",
"price": 12.99,
"tags": ["Lunch", "Dinner"]
},
{
"id": 15,
"name": "BBQ Chicken Pizza",
"image": "pizza.jpg",
"description": "Our homemade thin-crust pizza topped with BBQ chicken and our house cheese blend.",
"price": 14.99,
"tags": ["Lunch", "Dinner"]
},
{
"id": 16,
"name": "Pork Chop",
"image": "pork-chop.jpg",
"description": "Thick-cut Pork Chop with a sweet apple glaze.",
"price": 16.99,
"tags": ["Dinner"]
},
{
"id": 17,
"name": "Pork Ramen",
"image": "ramen.jpg",
"description": "Delicious bowl of ramen with pork and vegetables.",
"price": 11.99,
"tags": ["Lunch", "Dinner"]
},
{
"id": 18,
"name": "Salmon Salad",
"image": "salmon-salad.jpg",
"description": "Fresh salad topped with grilled salmon, mixed vegetables, and our house vinaigrette.",
"price": 14.99,
"tags": ["Lunch", "Dinner", "Vegetarian"]
},
{
"id": 19,
"name": "Salmon Steak",
"image": "salmon.jpg",
"description": "Seared salmon steak topped with a sweet mango glaze.",
"price": 18.99,
"tags": ["Dinner"]
},
{
"id": 20,
"name": "Chicken Street Tacos",
"image": "street-tacos.jpg",
"description": "Delicious chicken tacos with a spicy mango salsa.",
"price": 9.99,
"tags": ["Lunch", "Dinner", "Spicy"]
},
{
"id": 21,
"name": "Veggie Sammy",
"image": "veggie-sammy.jpg",
"description": "Fresh grilled veggies on our homemade toasted sourdough.",
"price": 8.99,
"tags": ["Lunch", "Dinner", "Vegetarian"]
}
]
}