-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
113 lines (113 loc) · 2.96 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
{
"ingredients": {
"bread": [
"multigrain",
"white",
"baguette",
"sourdough",
"rye"
],
"firstTopping": [
"avocado",
"hummus",
"salted butter",
"cream cheese",
"fried egg",
"olive oil"
],
"secondTopping": [
"cinnamon & sugar",
"honey",
"peanut butter",
"fresh fruit",
"jam",
"jelly",
"herbs"
],
"toastLevel": [
"still cold",
"warmed slightly",
"golden perfection",
"burnt"
]
},
"toastimonials": [
{
"id": 1,
"toastimonial": "The perfect cronch"
},
{
"id": 2,
"toastimonial": "Buttery goodness"
},
{
"id": 3,
"toastimonial": "The perfect array of colors"
},
{
"id": 4,
"toastimonial": "The object of all my desires"
},
{
"id": 5,
"toastimonial": "A delectable amount of rise"
},
{
"id": 6,
"toastimonial": "So much happiness in the palm of my hand"
},
{
"id": 7,
"toastimonial": "The sourest of Sourdoughs"
},
{
"id": 8,
"toastimonial": "Flaky goodness"
},
{
"id": 9,
"toastimonial": "TOASTTTTTTTTTT"
},
{
"id": 10,
"toastimonial": "It’s toast, how can it get better?"
}
],
"recipes": [
{
"id": 1,
"name": "Cotton Candy Toast",
"ingredients": "jam, frosting, sprinkles",
"notes": "An explosion of fun",
"image": "https://www.tasteofhome.com/wp-content/uploads/2018/08/Princess-Toast_EXPS_DAI19_230060_B08_15_1b-21.jpg?w=1200"
},
{
"id": 2,
"name": "PB & Pickle",
"ingredients": "creamy peanut butter, dill pickle slices",
"notes": "Beautiful combo of sweet and salty. Nice textures.",
"image": "https://static01.nyt.com/images/2019/02/17/dining/17norecipe-peanutbutter/17norecipe-peanutbutter-articleLarge.jpg"
},
{
"id": 3,
"name": "Avocado Toast",
"ingredients": "smashed avocado, salt & pepper, additional toppings as desired",
"notes": "Filling, savory, the perfect amount of bougie",
"image": "https://www.eatthis.com/wp-content/uploads/sites/4/2019/06/avocado-egg-everything-bagel-seasoning-toast-combinations.jpg?quality=82&strip=all"
},
{
"id": 4,
"name": "Cottage Cheese & Fruit",
"ingredients": "cottage cheese, fresh fruit, a drizzle of honey",
"notes": "bursting with flavor. 10/10",
"image": "https://www.eatthis.com/wp-content/uploads/sites/4/2019/06/cottage-cheese-berries-honey-toast-combinations.jpg?quality=82&strip=all"
},
{
"id": 5,
"name": "Apples & PB",
"ingredients": "apples, peanut butter, honey, cinnamon & sugar",
"notes": "An upgrade on a childhood favorite. Perfect for all ages.",
"image": "https://www.eatthis.com/wp-content/uploads/sites/4/2019/06/apple-peanut-butter-cinnamon-honey-toast-combinations.jpg?quality=82&strip=all"
}
]
}