-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 14ee10e
Showing
17 changed files
with
354 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,354 @@ | ||
{ | ||
"dishes": [ | ||
{ | ||
"id": 0, | ||
"name": "Uthappizza", | ||
"image": "images/uthappizza.png", | ||
"category": "mains", | ||
"label": "Hot", | ||
"price": "4.99", | ||
"featured": true, | ||
"description": "A unique combination of Indian Uthappam (pancake) and Italian pizza, topped with Cerignola olives, ripe vine cherry tomatoes, Vidalia onion, Guntur chillies and Buffalo Paneer." | ||
}, | ||
{ | ||
"id": 1, | ||
"name": "Zucchipakoda", | ||
"image": "images/zucchipakoda.png", | ||
"category": "appetizer", | ||
"label": "", | ||
"price": "1.99", | ||
"featured": false, | ||
"description": "Deep fried Zucchini coated with mildly spiced Chickpea flour batter accompanied with a sweet-tangy tamarind sauce" | ||
}, | ||
{ | ||
"id": 2, | ||
"name": "Vadonut", | ||
"image": "images/vadonut.png", | ||
"category": "appetizer", | ||
"label": "New", | ||
"price": "1.99", | ||
"featured": false, | ||
"description": "A quintessential ConFusion experience, is it a vada or is it a donut?" | ||
}, | ||
{ | ||
"id": 3, | ||
"name": "ElaiCheese Cake", | ||
"image": "images/elaicheesecake.png", | ||
"category": "dessert", | ||
"label": "", | ||
"price": "2.99", | ||
"featured": false, | ||
"description": "A delectable, semi-sweet New York Style Cheese Cake, with Graham cracker crust and spiced with Indian cardamoms" | ||
} | ||
], | ||
"comments": [ | ||
{ | ||
"id": 0, | ||
"dishId": 0, | ||
"rating": 5, | ||
"comment": "Imagine all the eatables, living in conFusion!", | ||
"author": "John Lemon", | ||
"date": "2012-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": "Paul McVites", | ||
"date": "2014-09-05T17:57:28.556094Z" | ||
}, | ||
{ | ||
"id": 2, | ||
"dishId": 0, | ||
"rating": 3, | ||
"comment": "Eat it, just eat it!", | ||
"author": "Michael Jaikishan", | ||
"date": "2015-02-13T17:57:28.556094Z" | ||
}, | ||
{ | ||
"id": 3, | ||
"dishId": 0, | ||
"rating": 4, | ||
"comment": "Ultimate, Reaching for the stars!", | ||
"author": "Ringo Starry", | ||
"date": "2013-12-02T17:57:28.556094Z" | ||
}, | ||
{ | ||
"id": 4, | ||
"dishId": 0, | ||
"rating": 2, | ||
"comment": "It's your birthday, we're gonna party!", | ||
"author": "25 Cent", | ||
"date": "2011-12-02T17:57:28.556094Z" | ||
}, | ||
{ | ||
"id": 5, | ||
"dishId": 1, | ||
"rating": 5, | ||
"comment": "Imagine all the eatables, living in conFusion!", | ||
"author": "John Lemon", | ||
"date": "2012-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": "2014-09-05T17:57:28.556094Z" | ||
}, | ||
{ | ||
"id": 7, | ||
"dishId": 1, | ||
"rating": 3, | ||
"comment": "Eat it, just eat it!", | ||
"author": "Michael Jaikishan", | ||
"date": "2015-02-13T17:57:28.556094Z" | ||
}, | ||
{ | ||
"id": 8, | ||
"dishId": 1, | ||
"rating": 4, | ||
"comment": "Ultimate, Reaching for the stars!", | ||
"author": "Ringo Starry", | ||
"date": "2013-12-02T17:57:28.556094Z" | ||
}, | ||
{ | ||
"id": 9, | ||
"dishId": 1, | ||
"rating": 2, | ||
"comment": "It's your birthday, we're gonna party!", | ||
"author": "25 Cent", | ||
"date": "2011-12-02T17:57:28.556094Z" | ||
}, | ||
{ | ||
"id": 10, | ||
"dishId": 2, | ||
"rating": 5, | ||
"comment": "Imagine all the eatables, living in conFusion!", | ||
"author": "John Lemon", | ||
"date": "2012-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": "2014-09-05T17:57:28.556094Z" | ||
}, | ||
{ | ||
"id": 12, | ||
"dishId": 2, | ||
"rating": 3, | ||
"comment": "Eat it, just eat it!", | ||
"author": "Michael Jaikishan", | ||
"date": "2015-02-13T17:57:28.556094Z" | ||
}, | ||
{ | ||
"id": 13, | ||
"dishId": 2, | ||
"rating": 4, | ||
"comment": "Ultimate, Reaching for the stars!", | ||
"author": "Ringo Starry", | ||
"date": "2013-12-02T17:57:28.556094Z" | ||
}, | ||
{ | ||
"id": 14, | ||
"dishId": 2, | ||
"rating": 2, | ||
"comment": "It's your birthday, we're gonna party!", | ||
"author": "25 Cent", | ||
"date": "2011-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": "2011-12-02T17:57:28.556094Z" | ||
}, | ||
{ | ||
"dishId": 3, | ||
"rating": "3", | ||
"author": "radhika", | ||
"comment": "test comment", | ||
"date": "2019-09-18T12:57:27.670Z", | ||
"id": 20 | ||
}, | ||
{ | ||
"dishId": 3, | ||
"rating": "3", | ||
"author": "radhika", | ||
"comment": "test comment", | ||
"date": "2019-09-18T12:57:29.071Z", | ||
"id": 21 | ||
} | ||
], | ||
"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": "Peter Pan", | ||
"image": "images/alberto.png", | ||
"designation": "Chief Epicurious Officer", | ||
"abbr": "CEO", | ||
"featured": false, | ||
"description": "Our CEO, Peter, credits his 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": "Dhanasekaran Witherspoon", | ||
"image": "images/alberto.png", | ||
"designation": "Chief Food Officer", | ||
"abbr": "CFO", | ||
"featured": false, | ||
"description": "Our CFO, Danny, 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": "Agumbe Tang", | ||
"image": "images/alberto.png", | ||
"designation": "Chief Taste Officer", | ||
"abbr": "CTO", | ||
"featured": false, | ||
"description": "Blessed with the most discerning gustatory sense, Agumbe, our CFO, personally ensures that every dish that we serve meets his 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": "Alberto Somayya", | ||
"image": "images/alberto.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 | ||
}, | ||
{ | ||
"date": "2019-09-19T05:49:59.819Z", | ||
"id": 2 | ||
}, | ||
{ | ||
"date": "2019-09-19T05:50:47.094Z", | ||
"id": 3 | ||
}, | ||
{ | ||
"firstname": { | ||
"firstname": "brr", | ||
"lastname": "thakkar", | ||
"telnum": "7878900909", | ||
"email": "", | ||
"agree": false, | ||
"contactType": "tel", | ||
"message": "" | ||
}, | ||
"date": "2019-09-19T05:54:32.743Z", | ||
"id": 4 | ||
}, | ||
{ | ||
"firstname": { | ||
"firstname": "radhika", | ||
"lastname": "thakkar", | ||
"telnum": "7878900909", | ||
"email": "[email protected]", | ||
"agree": true, | ||
"contactType": "Email", | ||
"message": "comment demo" | ||
}, | ||
"date": "2019-09-19T05:56:15.310Z", | ||
"id": 5 | ||
}, | ||
{ | ||
"firstname": { | ||
"firstname": "radhika", | ||
"lastname": "thakkar", | ||
"telnum": "", | ||
"email": "", | ||
"agree": false, | ||
"contactType": "tel", | ||
"message": "" | ||
}, | ||
"date": "2019-09-19T06:15:56.838Z", | ||
"id": 6 | ||
}, | ||
{ | ||
"firstname": { | ||
"firstname": "brr", | ||
"lastname": "lastname", | ||
"telnum": "", | ||
"email": "", | ||
"agree": false, | ||
"contactType": "tel", | ||
"message": "" | ||
}, | ||
"id": 7 | ||
}, | ||
{ | ||
"date": "2019-09-19T06:29:28.196Z", | ||
"firstname": "radhika", | ||
"lastname": "thakkar", | ||
"telnum": "7878900909", | ||
"email": "[email protected]", | ||
"agree": true, | ||
"contactType": "tel", | ||
"message": "feedback is filled successfully ....", | ||
"id": 8 | ||
} | ||
] | ||
} |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.