-
Notifications
You must be signed in to change notification settings - Fork 36
/
menu.json
88 lines (88 loc) · 2.32 KB
/
menu.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
{
"menuItems": [
{
"name": "Espresso",
"description": "Rich and bold espresso shot.",
"price": "$3.00",
"image": "./images/Espresso.jpg",
"category": "Coffee"
},
{
"name": "Cappuccino",
"description": "Creamy cappuccino topped with foam.",
"price": "$4.00",
"image": "./images/Cappuccino.jpg",
"category": "Coffee"
},
{
"name": "Latte",
"description": "Smooth latte with a touch of milk.",
"price": "$4.50",
"image": "./images/Latte.jpg",
"category": "Coffee"
},
{
"name": "Mocha",
"description": "Delicious mocha with chocolate and espresso.",
"price": "$4.75",
"image": "./images/Mocha.jpg",
"category": "Coffee"
},
{
"name": "Green Tea",
"description": "Refreshing green tea with antioxidants.",
"price": "$2.50",
"image": "./images/Green Tea.jpg",
"category": "Tea"
},
{
"name": "Black Tea",
"description": "Strong black tea for a perfect morning.",
"price": "$2.00",
"image": "./images/Black Tea.jpg",
"category": "Tea"
},
{
"name": "Chai Latte",
"description": "Spiced chai latte with steamed milk.",
"price": "$3.50",
"image": "./images/Chai Latte.jpg",
"category": "Tea"
},
{
"name": "Mint Lemonade",
"description": "Cool and refreshing mint lemonade.",
"price": "$2.00",
"image": "./images/Mint Lemonade.jpg",
"category": "Juice"
},
{
"name": "Orange Juice",
"description": "Freshly squeezed orange juice.",
"price": "$3.00",
"image": "./images/Orange Juice.jpg",
"category": "Juice"
},
{
"name": "Apple Juice",
"description": "Refreshing apple juice with a hint of cinnamon.",
"price": "$2.50",
"image": "./images/Apple Juice.jpg",
"category": "Juice"
},
{
"name": "Berry Smoothie",
"description": "Smooth and delicious berry smoothie.",
"price": "$4.00",
"image": "./images/Berry Smoothie.jpg",
"category": "Smoothie"
},
{
"name": "Tropical Smoothie",
"description": "A mix of tropical fruits blended to perfection.",
"price": "$4.50",
"image": "./images/Tropical Smoothie.jpg",
"category": "Smoothie"
}
]
}