menu.js
4.51 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
[
{
"id": 1,
"name": "Sashimi salad",
"price": 12.00,
"image": "sashimi-salad.jpg",
"category": "Cold starters",
"description": "Organic greens topped with market fresh sashimi, wasabi soy vinaigrette.",
"featured": true
},
{
"id": 2,
"name": "Chirashi sushi",
"price": 21.00,
"image": "chirashi-sushi.jpg",
"category": "Cold starters",
"description": "Sushi bar variety with sushi rice.",
"featured": false
},
{
"id": 3,
"name": "Seaweed salad",
"price": 17.00,
"image": "seaweed-salad.jpg",
"category": "Cold starters",
"description": "A nice seaweed salad.",
"featured": true
},
{
"id": 4,
"name": "Edamame",
"price": 4.00,
"image": "edamame.jpg",
"category": "Warm Starters",
"description": "Boiled soy beans with salt ",
"featured": true
},
{
"id": 5,
"name": "Miso soup",
"price": 4.00,
"image": "miso-soup.jpg",
"category": "Warm Starters",
"description": "Soy bean soup with Wacame seaweed, tofu and spring onion.",
"featured": false
},
{
"id": 6,
"name": "Maguro",
"price": 12.50,
"image": "maguro.jpg",
"category": "Sashimi",
"description": "Tuna pieces.",
"featured": true
},
{
"id": 7,
"name": "Shake",
"price": 10.00,
"image": "shake.jpg",
"category": "Sashimi",
"description": "",
"featured": false
},
{
"id": 8,
"name": "Shiromi",
"price": 9.50,
"image": "shiromi.jpg",
"category": "Sashimi",
"description": "White fish pieces.",
"featured": false
},
{
"id": 9,
"name": "Tekka maki",
"price": 6.00,
"image": "tekka-maki.jpg",
"category": "Hosomaki",
"description": "Tuna roll with wasabi. - 6 pieces",
"featured": true
},
{
"id": 10,
"name": "Hosomaki Mix",
"price": 17.00,
"image": "hosomaki-mix.jpg",
"category": "Hosomaki",
"description": "18 pieces.",
"featured": false
},
{
"id": 11,
"name": "California rolls",
"price": 7.75,
"image": "california-rolls.jpg",
"category": "Traditionall Rolls",
"description": "Crab sticks, avocado and cucumber. - 8 pieces",
"featured": true
},
{
"id": 12,
"name": "Seattle rolls",
"price": 8.00,
"image": "seattle-rolls.jpg",
"category": "Traditionall Rolls",
"description": "Smoked salmon. Cucumber. Cream cheese.",
"featured": false
},
{
"id": 13,
"name": "Spicy Tuna rolls",
"price": 6.00,
"image": "spicytuna-rolls.jpg",
"category": "Traditionall Rolls",
"description": "Spicy tuna, spring onion and avocado. - 6 pieces",
"featured": true
},
{
"id": 14,
"name": "Ebi rolls",
"price": 8.00,
"image": "ebi-rolls.jpg",
"category": "Traditionall Rolls",
"description": "King prawns, avocado and asparagus. - 8 pieces",
"featured": false
},
{
"id": 15,
"name": "Chicken Teriyaki",
"price": 12.00,
"image": "chicken-teriyaki.jpg",
"category": "Hot Dishes",
"description": "Sauted chicken with teiyaki sauce.",
"featured": false
},
{
"id": 16,
"name": "Salmon Teriyaki",
"price": 13.50,
"image": "salmon-teriyaki.jpg",
"category": "Hot Dishes",
"description": "Sauted salmon with teriyaki sauce.",
"featured": true
},
{
"id": 17,
"name": "Gohan",
"price": 3.00,
"image": "gohan.jpg",
"category": "Hot Dishes",
"description": "Steamed rice.",
"featured": false
},
{
"id": 18,
"name": "Tori Katsu",
"price": 11.00,
"image": "tori-katsu.jpg",
"category": "Hot Dishes",
"description": "Pan-fried chicken breast with yasai salad.",
"featured": false
},
{
"id": 19,
"name": "Yaki Udon",
"price": 11.50,
"image": "yaki-udon.jpg",
"category": "Hot Dishes",
"description": "Udon noddles with chicken, king prawns and vegetables.",
"featured": true
}
]