-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu_example.json
More file actions
102 lines (102 loc) · 3.38 KB
/
menu_example.json
File metadata and controls
102 lines (102 loc) · 3.38 KB
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
[
{
"id": "columna-1",
"categories": [
{
"title": "Cafés de Especialidad",
"headerImage": "/images/fondo_001.jpg",
"items": [
{
"id": "espresso",
"name": "Espresso Doble",
"description": "Intenso, con notas a chocolate amargo.",
"detail": "Una extracción perfecta de 60ml, ideal para despertar los sentidos con su cuerpo denso y crema dorada.",
"price": 45,
"image": "/images/fondo_001.jpg",
"options": [
{
"type": "radio",
"label": "Nivel de Azúcar",
"name": "sugar_espresso",
"choices": [
{"value": "sin", "label": "Sin Azúcar", "checked": true},
{"value": "poca", "label": "Poca Azúcar"},
{"value": "mucha", "label": "Mucha Azúcar"}
]
}
]
},
{
"id": "flatwhite",
"name": "Flat White",
"description": "Doble shot con leche texturizada fina.",
"detail": "Equilibrio perfecto entre café intenso y leche sedosa, con una capa fina de microespuma.",
"price": 55,
"image": "/capturas/flatwhite.jpg",
"options": [
{
"type": "radio",
"label": "Nivel de Azúcar",
"name": "sugar_flatwhite",
"choices": [
{"value": "sin", "label": "Sin Azúcar", "checked": true},
{"value": "poca", "label": "Poca Azúcar"},
{"value": "mucha", "label": "Mucha Azúcar"}
]
}
]
}
]
}
]
},
{
"id": "columna-2",
"categories": [
{
"title": "Platillos",
"headerImage": "/images/fondo_001.jpg",
"items": [
{
"id": "burger",
"name": "Hamburguesa con queso",
"description": "Carne jugosa estilo BBQ.",
"detail": "150g de carne selecta, queso fundido y pan artesanal.",
"price": 85,
"image": "/images/fondo_001.jpg",
"options": [
{
"type": "checkbox",
"label": "Aderezos y Verduras",
"name": "burger_toppings",
"choices": [
{"value": "mayonesa", "label": "Mayonesa", "checked": true},
{"value": "mostaza", "label": "Mostaza", "checked": true},
{"value": "catsup", "label": "Catsup", "checked": true},
{"value": "lechuga", "label": "Lechuga", "checked": true},
{"value": "jitomate", "label": "Jitomate", "checked": true},
{"value": "cebolla", "label": "Cebolla", "checked": true}
]
}
]
}
]
},
{
"title": "Acompañamientos",
"headerImage": "/images/fondo_001.jpg",
"items": [
{
"id": "tarta",
"name": "Tarta de Queso",
"description": "Estilo vasco, cremosa y tostada.",
"detail": "Suave, cremosa y con ese toque tostado característico. El acompañamiento ideal.",
"price": 85,
"image": "/images/fondo_001.jpg",
"options": []
}
]
}
]
}
]