-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMenu.tsx
273 lines (240 loc) · 8.05 KB
/
Menu.tsx
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
import Image from "next/image";
import React from "react";
const Menu = () => {
return (
<section className="section menu" aria-label="menu-label" id="menu">
<div className="container">
<p className="section-subtitle text-center label-2">
Special Selection
</p>
<h2 className="headline-1 section-title text-center">Delicious Menu</h2>
<ul className="grid-list">
<li>
<div className="menu-card hover:card">
<figure
className="card-banner img-holder"
style={
{ "--width": "100", "--height": "100" } as React.CSSProperties
}
>
<Image
src="/images/menu-1.png"
width="100"
height="100"
loading="lazy"
alt="Greek Salad"
className="img-cover"
/>
</figure>
<div>
<div className="title-wrapper">
<h3 className="title-3">
<a href="#" className="card-title">
Pan Grilled Local Pork Belly
</a>
</h3>
<span className="badge label-1">Seasonal</span>
<span className="span title-2">NRs. 599</span>
</div>
<p className="card-text label-1">
Combined Nepali herbs, Spices served with salad & pickle
</p>
</div>
</div>
</li>
<li>
<div className="menu-card hover:card">
<figure
className="card-banner img-holder"
style={
{ "--width": "100", "--height": "100" } as React.CSSProperties
}
>
<Image
src="/images/menu-2.png"
width="100"
height="100"
loading="lazy"
alt="Lasagne"
className="img-cover"
/>
</figure>
<div>
<div className="title-wrapper">
<h3 className="title-3">
<a href="#" className="card-title">
Mustang Aloo/Timur Aloo
</a>
</h3>
<span className="span title-2">NRs. 999</span>
</div>
<p className="card-text label-1">
Vegetables, cheeses, ground meats, tomato sauce, seasonings
and spices
</p>
</div>
</div>
</li>
<li>
<div className="menu-card hover:card">
<figure
className="card-banner img-holder"
style={
{ "--width": "100", "--height": "100" } as React.CSSProperties
}
>
<Image
src="/images/menu-3.png"
width="100"
height="100"
loading="lazy"
alt="Butternut Pumpkin"
className="img-cover"
/>
</figure>
<div>
<div className="title-wrapper">
<h3 className="title-3">
<a href="#" className="card-title">
Local Sukuti Sadheko
</a>
</h3>
<span className="span title-2">NRs 399</span>
</div>
<p className="card-text label-1">
Dried Buff mixed with onion, ginger, tomato, garlic, green chilly, corriander and Nepali spices
</p>
</div>
</div>
</li>
<li>
<div className="menu-card hover:card">
<figure
className="card-banner img-holder"
style={
{ "--width": "100", "--height": "100" } as React.CSSProperties
}
>
<Image
src="/images/menu-4.png"
width="100"
height="100"
loading="lazy"
alt="Tokusen Wagyu"
className="img-cover"
/>
</figure>
<div>
<div className="title-wrapper">
<h3 className="title-3">
<a href="#" className="card-title">
Thai Pork Chilly
</a>
</h3>
<span className="badge label-1">New</span>
<span className="span title-2">NRs. 890</span>
</div>
<p className="card-text label-1">
Marinated pork deep fried served with thai spices sauce.
</p>
</div>
</div>
</li>
<li>
<div className="menu-card hover:card">
<figure
className="card-banner img-holder"
style={
{ "--width": "100", "--height": "100" } as React.CSSProperties
}
>
<Image
src="/images/menu-5.png"
width="100"
height="100"
loading="lazy"
alt="Olivas Rellenas"
className="img-cover"
/>
</figure>
<div>
<div className="title-wrapper">
<h3 className="title-3">
<a href="#" className="card-title">
Olivas Rellenas
</a>
</h3>
<span className="span title-2">NRs. 2000</span>
</div>
<p className="card-text label-1">
Avocados with crab meat, red onion, crab salad stuffed red
bell pepper and green bell pepper.
</p>
</div>
</div>
</li>
<li>
<div className="menu-card hover:card">
<figure
className="card-banner img-holder"
style={
{ "--width": "100", "--height": "100" } as React.CSSProperties
}
>
<Image
src="/images/menu-6.png"
width="100"
height="100"
loading="lazy"
alt="Opu Fish"
className="img-cover"
/>
</figure>
<div>
<div className="title-wrapper">
<h3 className="title-3">
<a href="#" className="card-title">
Opu Fish
</a>
</h3>
<span className="span title-2">NRs. 490</span>
</div>
<p className="card-text label-1">
Vegetables, cheeses, ground meats, tomato sauce, seasonings
and spices
</p>
</div>
</div>
</li>
</ul>
<p className="menu-text text-center">
During winter daily from <span className="span">7:00 pm</span> to{" "}
<span className="span">9:00 pm</span>
</p>
<a href="#menus" className="btn btn-primary">
<span className="text text-1">View All Menu</span>
<span className="text text-2" aria-hidden="true">
View All Menu
</span>
</a>
<Image
src="/images/shape-5.png"
width="921"
height="1036"
loading="lazy"
alt="shape"
className="shape shape-2 move-anim"
/>
<Image
src="/images/shape-6.png"
width="343"
height="345"
loading="lazy"
alt="shape"
className="shape shape-3 move-anim"
/>
</div>
</section>
);
};
export default Menu;