Last active
September 28, 2018 16:11
-
-
Save bkeating/f03405f88b8d9b4ece16ee90ff8f3cf8 to your computer and use it in GitHub Desktop.
A cafe menu in the form of a js object
This file contains hidden or 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
module.exports = { | |
category: [ | |
{ id: 1, title: 'Breakfast', slug: 'breakfast', description: 'Changes Regularly - Febuary 1, 2016', }, | |
{ id: 2, title: 'Lunch', slug: 'lunch', description: 'Changes Regularly - Febuary 1, 2016', }, | |
{ id: 3, title: 'Evening', slug: 'evening', description: 'from 4pm - 8pm Tues. - Sat.', }, | |
{ id: 4, title: 'Wine, Beer, Cocktails', }, | |
{ id: 5, title: 'Sparkling', }, | |
{ id: 6, title: 'Rose', }, | |
{ id: 7, title: 'White', }, | |
{ id: 8, title: 'Red', }, | |
{ id: 9, title: 'Beer', }, | |
{ id: 10, title: 'Cocktails', }, | |
{ id: 11, title: 'Cafe', }, | |
{ id: 12, title: 'Drinks', slug: 'drinks', }, | |
{ id: 13, title: 'Coffee', slug: 'coffee', }, | |
{ id: 14, title: 'Un-coffee', slug: 'uncoffee', }, | |
{ id: 15, title: 'Extras', slug: 'extras', }, | |
], | |
menu: [ | |
{ | |
id: 1, | |
price: 10, | |
title: 'Classic Breakfast', | |
description: 'local organic & pastured scrambled eggs / applewood smoked bacon / roasted potatoes / house sourdough toast', | |
category: [1, 3] | |
}, | |
{ | |
id: 2, | |
price: 9.5, | |
title: 'Bacon Egg & Cheese Croissant', | |
description: 'organic scrambled eggs / smoked bacon / organic cheddar & colby / house croissant (make it vegetarian with roasted tomatoes and avocado)', | |
category: [1] | |
}, | |
{ | |
id: 3, | |
price: 9, | |
title: 'Maple-brown sugar organic ancient grain porridge', | |
description: 'quinoa / amaranth / millet / steel cut oats / candied walnutes / organic banana / organic dried apricot / hemp seed', | |
category: [1] | |
}, | |
{ | |
id: 4, | |
price: 12, | |
title: 'Blueberry Cobbler Pancakes', | |
description: 'organic buttermilk OR organic buckwheat (no gluten) / organic blueberries / maple caramel / granola streusel / organic whipped cream (streusel contains almonds, walnuts & coconut)', | |
category: [1, 3] | |
}, | |
{ | |
id: 5, | |
price: 11.5, | |
title: 'Beef Chorizo Breakfast Burrito', | |
description: 'Rohrganics spicy ground beef / organic black beans / organic carrots / organic caramelized onions / scrambled eggs / ceddar / colby jack / cilantro lime crema / red pepper salsa (make it vegetarian with wilted greens and avocado)', | |
category: [1] | |
}, | |
{ | |
id: 6, | |
price: 8.5, | |
title: 'Granola Bowl', | |
description: 'house-made flax & coconut granola / organic yogurt / organic fruit / local raw honey (contains walnuts & almonds)', | |
category: [1] | |
}, | |
{ | |
id: 7, | |
price: 12, | |
title: 'Rohrganics Braised Beef, Broccoli & Brown Rice Bowl', | |
description: 'organic broccoli / organic brown rice / bok choy / kimchi / gochujang / pea shoots / sunny eggs (make it vegetarian with organic mushrooms / make it vegan with baked tofu instead of eggs)', | |
category: [1, 3] | |
}, | |
{ | |
id: 8, | |
price: 13, | |
title: 'Farmer’s Market Vegetable Hash', | |
description: 'local & organic vegetables / kale pesto / poached eggs / goat cheese / preserved organic lemon / organic radish / sprouts', | |
category: [1] | |
}, | |
{ | |
id: 9, | |
price: 11.5, | |
title: 'Grilled Swiss, Bacon & Mushroom', | |
description: 'local organic sunflower sprouts / Carr Valley WI swiss / caramelized organic onions / organic roasted garlic aioli / house sourgdough (make it vegetarian with sauteed greens)', | |
category: [2] | |
}, | |
{ | |
id: 10, | |
price: 7, | |
title: 'Grilled Cheese', | |
description: 'local organic sunflower sprouts / Carr Valley WI swiss / caramelized organic onions / organic roasted garlic aioli / house sourgdough (make it vegetarian with sauteed greens)', | |
category: [2, 3] | |
}, | |
{ | |
id: 11, | |
price: 11, | |
title: 'Roasted Carrot Tacos (vegan)', | |
description: 'local organic sunflower sprouts / Carr Valley WI swiss / caramelized organic onions / organic roasted garlic aioli / house sourgdough (make it vegetarian with sauteed greens)', | |
category: [2, 3] | |
}, | |
{ | |
id: 12, | |
price: 12, | |
title: 'Vegan Caesar Salad', | |
description: 'local organic sunflower sprouts / Carr Valley WI swiss / caramelized organic onions / organic roasted garlic aioli / house sourgdough (make it vegetarian with sauteed greens)', | |
category: [2, 3] | |
}, | |
{ | |
id: 13, | |
price: 12, | |
title: 'Grassfed Rohrganics Meatball Sandwich', | |
description: 'local organic sunflower sprouts / Carr Valley WI swiss / caramelized organic onions / organic roasted garlic aioli / house sourgdough (make it vegetarian with sauteed greens)', | |
category: [2, 3] | |
}, | |
{ | |
id: 14, | |
price: 13, | |
title: 'Tuna Salad Nicoise-ish', | |
description: 'local organic sunflower sprouts / Carr Valley WI swiss / caramelized organic onions / organic roasted garlic aioli / house sourgdough (make it vegetarian with sauteed greens)', | |
category: [2, 3] | |
}, | |
{ | |
id: 15, | |
price: 12, | |
title: 'Falafel Burger (vegan)', | |
description: 'local organic sunflower sprouts / Carr Valley WI swiss / caramelized organic onions / organic roasted garlic aioli / house sourgdough (make it vegetarian with sauteed greens)', | |
category: [2] | |
}, | |
{ | |
id: 16, | |
price: 9, | |
title: 'Quiche', | |
description: 'local organic sunflower sprouts / Carr Valley WI swiss / caramelized organic onions / organic roasted garlic aioli / house sourgdough (make it vegetarian with sauteed greens)', | |
category: [2] | |
}, | |
{ | |
id: 17, | |
price: [4, 7], | |
title: 'Soup of the day', | |
description: '', | |
category: [2] | |
}, | |
{ | |
id: 18, | |
price: 13.5, | |
title: 'Blackend Fish Tacos', | |
description: 'wild cod / brown rice / black beans / avocado / mango salsa', | |
category: [3] | |
}, | |
{ | |
id: 19, | |
price: 14, | |
title: 'Summer Vegetable Risotto', | |
description: 'zucchini / mushrooms / eggplant /roasted tomato / kale pesto / parmesan / broccoli / garlic scapes', | |
category: [3] | |
}, | |
{ | |
id: 20, | |
price: 13, | |
title: 'Gado Gado', | |
description: 'chilled brown rice noodles & market vegetables / spicy peanut sauce / add organic, pastured chicken +$5 or organic baked tofu +$3', | |
category: [3] | |
}, | |
{ | |
id: 21, | |
price: 15, | |
title: 'Rohrganics Pork Shoulder & Sweet Corn Bacon Waffle', | |
description: 'bbq / ramps / spicy honey / savory granola / pickled red onion', | |
category: [3] | |
}, | |
{ | |
id: 22, | |
price: 7, | |
title: 'Prosecco', | |
description: 'tommasi / Italy', | |
category: [4], | |
subcat: [5] | |
}, | |
{ | |
id: 23, | |
price: 8, | |
title: 'Rose', | |
description: "eric chevalier vale de loire / rose of pinot noir / pays nantais / '17", | |
category: [4], | |
subcat: [6] | |
}, | |
{ | |
id: 24, | |
price: 8, | |
title: 'Chardonnay', | |
description: "errazuriz / wild ferment / casablanca valley / california / '14", | |
category: [4], | |
subcat: [7] | |
}, | |
{ | |
id: 25, | |
price: 8, | |
title: 'Pinot Gris', | |
description: "brassfield / high serenity ranch / high valley / california / '13", | |
category: [4], | |
subcat: [7] | |
}, | |
{ | |
id: 26, | |
price: 9.5, | |
title: 'Red Blend', | |
description: "eruption / volcano ridge vineyard / high valley / california '13", | |
category: [4], | |
subcat: [8] | |
}, | |
{ | |
id: 27, | |
price: 6.75, | |
title: 'Cabernet Sauvignon', | |
description: "boomtown / washington / '15", | |
category: [4], | |
subcat: [8] | |
}, | |
{ | |
id: 28, | |
price: 4, | |
title: 'Naked Threesome IPA', | |
description: 'raised grain / waukesha', | |
category: [4], | |
subcat: [9] | |
}, | |
{ | |
id: 29, | |
price: 4, | |
title: 'Paradocs Red Imperial IPA', | |
description: 'raised grain / waukesha', | |
category: [4], | |
subcat: [9] | |
}, | |
{ | |
id: 30, | |
price: 4, | |
title: 'Blackwalnut Belgian Imperial Stout', | |
description: 'raised grain / waukesha', | |
category: [4], | |
subcat: [9] | |
}, | |
{ | |
id: 31, | |
price: 4, | |
title: 'Crop Circle Wheat', | |
description: 'great dane brewing / madison', | |
category: [4], | |
subcat: [9] | |
}, | |
{ | |
id: 32, | |
price: 8, | |
title: 'Mimosa', | |
description: 'organic orange juice / prosecco', | |
category: [4], | |
subcat: [10] | |
}, | |
{ | |
id: 33, | |
price: 9, | |
title: 'Bloody Mary', | |
description: 'twisted path organic vodka / rohrganics tomato puree / worcestershire / tamari / horseradish', | |
category: [4], | |
subcat: [10] | |
}, | |
{ | |
id: 34, | |
price: 11, | |
title: 'Blackberry French 75', | |
description: 'barr hill gin / lemon / prosecco', | |
category: [4], | |
subcat: [10] | |
}, | |
{ | |
id: 35, | |
price: 10, | |
title: 'Q1', | |
description: 'jim beam black bourbon / combier / rhubarb ginger / bitters', | |
category: [4], | |
subcat: [10] | |
}, | |
{ | |
id: 36, | |
price: 10, | |
title: 'Espresso Martini', | |
description: 'espresso / irish cream / chocolate', | |
category: [4], | |
subcat: [10] | |
}, | |
{ | |
id: 37, | |
price: [ | |
{ id: 1, amount: 1.50, description: 'cup' }, | |
{ id: 2, amount: 1.75, description: 'mug' }, | |
{ id: 3, amount: 2, description: 'pint' }, | |
], | |
title: 'Espresso Martini', | |
description: 'espresso / irish cream / chocolate', | |
category: [11], | |
}, | |
{ | |
id: 38, | |
price: [ | |
{ id: 1, amount: 3, description: 'cup' }, | |
{ id: 2, amount: 3.25, description: 'mug' }, | |
{ id: 3, amount: 3.75, description: 'pint' }, | |
], | |
title: 'Espresso Martini', | |
description: 'espresso / irish cream / chocolate', | |
category: [11], | |
}, | |
{ id: 39, title: '', } | |
] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment