-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1913 lines (1883 loc) · 128 KB
/
index.html
File metadata and controls
1913 lines (1883 loc) · 128 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
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="no">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Randaberg Take Away</title>
<meta name="description" content="Nyt deilig Kinamat og Thaimat hos Randaberg Take Away. Nyt maten i restauranten eller ta med. Vi tar også i mot bestillinger til større selskap.">
<meta name="apple-mobile-web-app-title" content="RandabergTakeAway" />
<meta property="og:title" content="Randaberg Take Away - Kinamat og Thaimat">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Randaberg Take Away">
<meta property="og:locale" content="no_NO">
<meta property="og:keywords" content="Kinamat, Thaimat, Take Away, Randaberg, Restaurant, Catering">
<meta property="og:description" content="Nyt deilig Kinamat og Thaimat hos Randaberg Take Away. Nyt maten i restauranten eller ta med. Vi tar også i mot bestillinger til større selskap.">
<meta property="og:image" content="/img/randaberg-takeaway-image.jpg">
<meta property="og:logo" content="/img/randatake-logo-bright.png" />
<meta property="og:url" content="https://randabergtakeaway.no">
<link rel="icon" type="image/png" href="/img/favi/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/img/favi/favicon.svg" />
<link rel="shortcut icon" href="/img/favi/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/img/favi/apple-touch-icon.png" />
<link rel="manifest" href="/img/favi/site.webmanifest" />
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
background-color: #d3f8c4;
background-image: linear-gradient(to bottom, #baf8a1, #e8fae2);
color: #374151;
}
.menu-category-title {
border-bottom: 2px solid #166534;
padding-bottom: 0.5rem;
margin-bottom: 1rem;
font-size: 1.75rem;
}
.menu-item {
border-bottom: 1px dashed #A3E635;
padding-bottom: 0.75rem;
margin-bottom: 0.75rem;
}
.menu-item:last-child {
border-bottom: none;
margin-bottom: 0;
}
.allergy-info-inline {
font-size: 0.8rem;
color: #DC2626;
font-weight: 500;
}
.nav-link {
transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-link-desktop:hover {
background-color: #65c98b;
color: white;
}
.nav-link-mobile:hover {
background-color: #65c98b;
color: white;
}
.section-title {
text-align: center;
font-size: 2.25rem;
font-weight: 700;
margin-bottom: 2rem;
color: #000000;
}
.card {
background-color: white;
border-radius: 0.75rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
.price-label {
font-size: 0.85rem;
color: #4B5563;
}
.price-amount {
font-weight: 600;
color: #15803D;
}
.nav-custom {
background-color: #34463b;
}
.footer-custom {
background-color: #baf8a1;
}
.footer-custom .hover\:text-yellow-400:hover {
color: #A3E635;
}
.item-description {
font-size: 0.85rem;
color: #52525B;
margin-top: 0.1rem;
}
</style>
<script type="application/ld+json" id="restaurant-schema">
{
"@context": "https://schema.org",
"@type": "Restaurant",
"name": "Randaberg Take Away",
"image": "https://randabergtakeaway.no/img/randatake-logo.svg",
"description": "Nyt deilig Kinamat og Thaimat hos Randaberg Take Away. Slapp av i vår Restaurant, ta med maten hjem eller bestill catering. Du finner oss midt i Randaberg sentrum.",
"address": {
"@type": "PostalAddress",
"streetAddress": "Jon Torbergssonsvei 6",
"addressLocality": "Randaberg",
"postalCode": "4070",
"addressCountry": "NO"
},
"telephone": "+4751415868",
"servesCuisine": ["Kinamat", "Thaimat"],
"priceRange": "200 kr - 300 kr",
"openingHoursSpecification": [
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": [
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
],
"opens": "12:00",
"closes": "21:00"
},
{
"@type": "OpeningHoursSpecification",
"dayOfWeek": "Monday",
"opens": "13:00",
"closes": "20:00"
}
],
"menu": "https://randabergtakeaway.no/#meny",
"acceptsReservations": "Call to reserve",
"url": "https://randabergtakeaway.no/"
}
</script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QZFHH4W1V9"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QZFHH4W1V9');
</script>
</head>
<body class="text-gray-800">
<div id="vacation-notice" style="display: none;" class="fixed top-0 left-0 w-full bg-red-600 text-white text-center p-3 z-50 shadow-lg">
<p class="font-bold">🏖️ Vi har feriestengt! 🏖️</p>
<p class="text-sm">Velkommen tilbake <span id="reopen-date-banner"></span>.</p>
</div>
<nav class="nav-custom text-white p-4 sticky top-0 z-40 shadow-md">
<div class="container mx-auto flex justify-between items-center">
<a href="tel:51415868" class="text-2xl font-bold"><i class="fas fa-phone mr-2"></i> 51 41 58 68</a>
<div class="md:hidden">
<button id="menu-toggle" aria-label="Åpne meny" class="text-white focus:outline-none">
<svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16m-7 6h7"></path></svg>
</button>
</div>
<div id="desktop-menu-links" class="hidden md:flex md:items-center md:space-x-1">
<a href="#info" class="nav-link nav-link-desktop px-3 py-2 rounded-md">Info</a>
<a href="#kokkens-spesial" class="nav-link nav-link-desktop px-3 py-2 rounded-md">Kokkens Spesial</a>
<a href="#meny" class="nav-link nav-link-desktop px-3 py-2 rounded-md">Meny</a>
<a href="#meny-lunch" class="nav-link nav-link-desktop px-3 py-2 rounded-md">Lunsj</a>
<a href="#meny-ekstra" class="nav-link nav-link-desktop px-3 py-2 rounded-md">Tilbehør</a>
</div>
</div>
<div id="mobile-menu" class="hidden md:hidden mt-2 pb-2">
<a href="#info" class="block nav-link nav-link-mobile py-2 px-4 text-sm rounded-md">Info</a>
<a href="#kokkens-spesial" class="block nav-link nav-link-mobile py-2 px-4 text-sm rounded-md">Kokkens Spesial</a>
<a href="#meny" class="block nav-link nav-link-mobile py-2 px-4 text-sm rounded-md">Meny</a>
<a href="#meny-lunch" class="block nav-link nav-link-mobile py-2 px-4 text-sm rounded-md">Lunsj</a>
<a href="#meny-ekstra" class="block nav-link nav-link-mobile py-2 px-4 text-sm rounded-md">Tilbehør</a>
</div>
</nav>
<section id="info" class="py-16">
<div class="container mx-auto px-6 text-center">
<img src="/img/randatake-logo.svg" alt="Randaberg Take Away Logo" class="w-24 mx-auto mb-2">
<h1 class="text-4xl md:text-6xl text-black mb-4 text-center tracking-widest">RANDABERG</h1>
<h1 class="text-4xl md:text-3xl text-black mb-4 text-center">RESTAURANT & TAKE AWAY</h1>
<p class="text-xl md:text-2xl text-gray-700 mb-6 text-center">Kinamat og Thaimat<br>i Randaberg Sentrum</p>
<p class="text-lg text-gray-700 mb-8 max-w-2xl mx-auto">
Vi tilbyr både servering i restauranten og take away.<br>
Vi tar også imot bestillinger til store selskaper.
</p>
<div id="info-cards-grid" class="grid md:grid-cols-3 gap-8 text-left">
<div id="order-card" class="card p-6">
<h3 class="text-2xl font-semibold text-gray-600 mb-3"><i class="fas fa-phone-alt mr-2"></i>Bestille mat?</h3>
<ul class="list-disc list-inside text-gray-700 space-y-1">
<li>Tlf: <a href="tel:51415868" class="text-green-600 hover:underline font-bold"><strong>51 41 58 68</strong></a></li>
<li>Mob: <a href="tel:99262855" class="text-green-600 hover:underline font-bold"><strong>99 26 28 55</strong></a></li>
</ul>
</div>
<div class="card p-6">
<h3 class="text-2xl font-semibold text-gray-600 mb-3"><i class="fas fa-clock mr-2"></i>Åpningstider</h3>
<ul id="regular-hours" class="text-gray-700 space-y-1">
<li class="flex justify-between"><span><strong>Mandag:</strong></span> <span>13:00 - 20:00</span></li>
<li class="flex justify-between"><span><strong>Tirsdag:</strong></span> <span>12:00 - 21:00</span></li>
<li class="flex justify-between"><span><strong>Onsdag:</strong></span> <span>12:00 - 21:00</span></li>
<li class="flex justify-between"><span><strong>Torsdag:</strong></span> <span>12:00 - 21:00</span></li>
<li class="flex justify-between"><span><strong>Fredag:</strong></span> <span>12:00 - 21:00</span></li>
<li class="flex justify-between"><span><strong>Lørdag:</strong></span> <span>12:00 - 21:00</span></li>
<li class="flex justify-between"><span><strong>Søndag:</strong></span> <span>12:00 - 21:00</span></li>
<li class="mt-2"><small>* Vi har av og til stengt på mandager</small></li>
</ul>
<div id="vacation-hours-message" style="display: none;" class="text-center p-4 bg-red-100 rounded-lg">
<p class="font-bold text-red-700">Vi har feriestengt!</p>
<p class="text-gray-700 mt-2">Velkommen tilbake <strong id="reopen-date-hours"></strong>.</p>
<p class="mt-4">🌴☀️</p>
</div>
</div>
<div id="location-card" class="card p-6">
<h3 class="text-2xl font-semibold text-gray-600 mb-3"><i class="fas fa-map-marker-alt mr-2"></i>Finn Oss</h3>
<p class="mb-2">
<a href="https://maps.app.goo.gl/qaemciaTcwLEaXav6" target="_blank" class="text-green-600 hover:underline">Jon Torbergssonsvei 6, 4070 Randaberg</a>
</p>
<p class="text-gray-700">Restauranten vår er midt i Randaberg sentrum. Det finnes flere gratis parkeringsplasser i nærheten.</p>
</div>
</div>
</div>
</section>
<section id="inspo-bilder" class="py-16 bg-gray-50">
<div class="container mx-auto px-6">
<div class="grid grid-cols-2 sm:grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-4 md:gap-6">
<div class="group relative aspect-square overflow-hidden rounded-lg shadow-lg">
<img src="/img/inspo/randtakeinspo-1111.jpg"
alt="Sursøt saus og diverse retter"
title="Sursøt saus og diverse retter"
class="w-full h-full object-cover transition-transform duration-300 ease-in-out group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-60 transition-all duration-300 ease-in-out flex items-center justify-center">
<p class="text-white text-center p-2 text-lg font-semibold opacity-0 group-hover:opacity-100 transition-opacity duration-300">Sursøt saus og diverse retter</p>
</div>
</div>
<div class="group relative aspect-square overflow-hidden rounded-lg shadow-lg">
<img src="/img/inspo/randtakeinspo-1112.jpg"
alt="5. Maissuppe med kylling"
title="5. Maissuppe med kylling"
class="w-full h-full object-cover transition-transform duration-300 ease-in-out group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-60 transition-all duration-300 ease-in-out flex items-center justify-center">
<p class="text-white text-center p-2 text-lg font-semibold opacity-0 group-hover:opacity-100 transition-opacity duration-300">5. Maissuppe med kylling</p>
</div>
</div>
<div class="group relative aspect-square overflow-hidden rounded-lg shadow-lg">
<img src="/img/inspo/randtakeinspo-1113.jpg"
alt="3. Kongereker vårruller (2 stk.)"
title="3. Kongereker vårruller (2 stk.)"
class="w-full h-full object-cover transition-transform duration-300 ease-in-out group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-60 transition-all duration-300 ease-in-out flex items-center justify-center">
<p class="text-white text-center p-2 text-lg font-semibold opacity-0 group-hover:opacity-100 transition-opacity duration-300">3. Kongereker vårruller (2 stk.)</p>
</div>
</div>
<div class="group relative aspect-square overflow-hidden rounded-lg shadow-lg">
<img src="/img/inspo/randtakeinspo-1114.jpg"
alt="18. Biff Chop Suey"
title="18. Biff Chop Suey"
class="w-full h-full object-cover transition-transform duration-300 ease-in-out group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-60 transition-all duration-300 ease-in-out flex items-center justify-center">
<p class="text-white text-center p-2 text-lg font-semibold opacity-0 group-hover:opacity-100 transition-opacity duration-300">18. Biff Chop Suey</p>
</div>
</div>
<div class="group relative aspect-square overflow-hidden rounded-lg shadow-lg">
<img src="/img/inspo/randtakeinspo-1115.jpg"
alt="28. Oksekjøtt i skiver med sorte bønner saus (sterk) og stekt ris"
title="28. Oksekjøtt i skiver med sorte bønner saus (sterk) og stekt ris"
class="w-full h-full object-cover transition-transform duration-300 ease-in-out group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-60 transition-all duration-300 ease-in-out flex items-center justify-center">
<p class="text-white text-center p-2 text-lg font-semibold opacity-0 group-hover:opacity-100 transition-opacity duration-300">28. Oksekjøtt i skiver med sorte bønner saus (sterk) og stekt ris</p>
</div>
</div>
<div class="group relative aspect-square overflow-hidden rounded-lg shadow-lg">
<img src="/img/inspo/randtakeinspo-1116.jpg"
alt="9. Fritert kylling med søt-sur saus"
title="9. Fritert kylling med søt-sur saus"
class="w-full h-full object-cover transition-transform duration-300 ease-in-out group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-60 transition-all duration-300 ease-in-out flex items-center justify-center">
<p class="text-white text-center p-2 text-lg font-semibold opacity-0 group-hover:opacity-100 transition-opacity duration-300">9. Fritert kylling med søt-sur saus</p>
</div>
</div>
<div class="group relative aspect-square overflow-hidden rounded-lg shadow-lg">
<img src="/img/inspo/randtakeinspo-1120.jpg"
alt="15. Kyllingspyd med Satay saus "
title="15. Kyllingspyd med Satay saus "
class="w-full h-full object-cover transition-transform duration-300 ease-in-out group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-60 transition-all duration-300 ease-in-out flex items-center justify-center">
<p class="text-white text-center p-2 text-lg font-semibold opacity-0 group-hover:opacity-100 transition-opacity duration-300">15. Kyllingspyd med Satay saus </p>
</div>
</div>
<div class="group relative aspect-square overflow-hidden rounded-lg shadow-lg">
<img src="/img/inspo/randtakeinspo-1122.jpg"
alt="35. Stekte nudler med kylling på Thai-vis (sterk) "
title="35. Stekte nudler med kylling på Thai-vis (sterk) "
class="w-full h-full object-cover transition-transform duration-300 ease-in-out group-hover:scale-110">
<div class="absolute inset-0 bg-black bg-opacity-0 group-hover:bg-opacity-60 transition-all duration-300 ease-in-out flex items-center justify-center">
<p class="text-white text-center p-2 text-lg font-semibold opacity-0 group-hover:opacity-100 transition-opacity duration-300">35. Stekte nudler med kylling på Thai-vis (sterk) </p>
</div>
</div>
</div>
</div>
</section>
<section id="kokkens-spesial" class="pt-6 py-16 pb-5"> <div class="container mx-auto px-6">
<h2 class="section-title">Kokkens anbefaling</h2>
<div class="card p-6 max-w-3xl mx-auto border-2 border-amber-500 shadow-xl">
<div class="space-y-4">
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">53. Oksekjøtt, kylling, svinekjøtt og kongereker <span class="allergy-info-inline">(A)(H)</span></h5>
<p class="item-description">med grønnsaker</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">240,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">269,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">54. Stekte grønnsaker (Vegetar) <span class="allergy-info-inline">(A)</span></h5>
<p class="item-description">med karri saus eller chilli saus</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">200,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">220,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">55. Friterte kyllingvinger <span class="allergy-info-inline">(B)(G)</span></h5>
<p class="item-description">med karri saus eller søt-sur saus</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">200,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">220,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">505. Stekte grønnsaker (Vegansk) <span class="allergy-info-inline">(A)(E)</span></h5>
<p class="item-description">med cashewnøtter</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
</div>
<br><p class="text-xs text-gray-500 mb-2">Alle hovedretter serveres med ris.</p>
</div>
</div>
</section>
<section id="meny" class="pt-2 py-16 pb-2">
<div class="container mx-auto px-6">
<h2 class="section-title">Meny</h2>
<div class="md:columns-2 gap-x-8">
<div class="card p-6 mb-8 md:break-inside-avoid">
<h3 class="text-green-700 menu-category-title">Forretter / Appetizers</h3>
<div class="space-y-4">
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">1. Vårrull <span class="allergy-info-inline">(B)(G)</span></h5>
<p class="item-description">Springroll</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">50,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">70,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">2. Satay kylling (2 stk.) <span class="allergy-info-inline">(B)(C)(G)</span></h5>
<p class="item-description">Satay chicken (2 pcs)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">92,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">110,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">3. Kongereker vårruller (2 stk.) <span class="allergy-info-inline">(B)(G)(H)</span></h5>
<p class="item-description">King prawns spring rolls (2 pcs)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">92,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">110,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">4. Satay kongereker (2 stk.) <span class="allergy-info-inline">(B)(C)(G)(H)</span></h5>
<p class="item-description">Satay king prawns</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">110,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">120,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">5. Maissuppe med kylling <span class="allergy-info-inline">(B)</span></h5>
<p class="item-description">Chicken corn soup</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">105,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">120,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">6. Pekingsuppe med kongereke og kylling <span class="allergy-info-inline">(A)(B)(H)</span></h5>
<p class="item-description">Peking soup</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">105,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">120,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">606. Tom Yum suppe med kongereker og kylling <span class="allergy-info-inline">(D)(H)</span></h5>
<p class="item-description">Tom Yum soup with king prawns</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">120,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">140,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">7. Friterte kyllingvinger med salat (4 stk) <span class="allergy-info-inline">(B)(G)</span></h5>
<p class="item-description">Deep fried chicken wings with salad</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">99,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">110,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">70. Svineribber med salat <span class="allergy-info-inline">(B)(G)</span></h5>
<p class="item-description">Spare-ribs with salad</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">115,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">140,-</span></p>
</div>
</div>
</div>
</div>
</div>
<div class="card p-6 mb-8 md:break-inside-avoid">
<h3 class="text-green-700 menu-category-title">Middag for flere personer</h3>
<div class="space-y-4">
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">A: Middag for 2 personer <span class="allergy-info-inline">(A, B, C, G)</span></h5>
<p class="item-description">Kyllingspyd med Satay</p>
<p class="item-description">Oksekjøtt med brokkoli</p>
<p class="item-description">Svinekjøtt med ingefær og chili (sterk)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">490,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">550,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">B: Middag for 3 personer <span class="allergy-info-inline">(A, B, G, H)</span></h5>
<p class="item-description">Kinesisk pepper biff</p>
<p class="item-description">Stekte kongereker på Kinesisk-vis (sterk)</p>
<p class="item-description">Fritert svinekjøtt med søt-sur saus</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">670,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">730,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">C: Middag for 4 personer <span class="allergy-info-inline">(A, B, G, H)</span></h5>
<p class="item-description">4 vårruller</p>
<p class="item-description">Oksekjøtt med grønnsaker</p>
<p class="item-description">Kongereker med brokkoli</p>
<p class="item-description">Fritert kylling med søt-sur saus</p>
<p class="item-description">Stekte svineribber på Kinesisk-vis (sterk)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">1050,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">1200,-</span></p>
</div>
</div>
</div>
</div>
</div>
<div class="card p-6 mb-8 md:break-inside-avoid">
<h3 class="text-green-700 menu-category-title">Kylling / Chicken</h3>
<div class="space-y-4">
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">8. Kylling med cashewnøtter <span class="allergy-info-inline">(A)(E)</span></h5>
<p class="item-description">Chicken with cashewnuts</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">220,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">240,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">808. Kylling i skiver med grønnsaker <span class="allergy-info-inline">(A)</span></h5>
<p class="item-description">Chicken Chop Suey</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">200,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">220,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">9. Fritert kylling med søt-sur saus <span class="allergy-info-inline">(B)(G)</span></h5>
<p class="item-description">Sweet and sour chicken</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">10. Kylling med pepper saus <span class="allergy-info-inline">(A)</span></h5>
<p class="item-description">Chicken with pepper sauce</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">200,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">220,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">11. Kylling i skiver med karri saus <span class="allergy-info-inline">(D)</span></h5>
<p class="item-description">Chicken curry</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">200,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">12. Kylling med rød karri og kokos saus (sterk) <span class="allergy-info-inline">(D)</span></h5>
<p class="item-description">Chicken with red curry and coconut sauce (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">13. Fritert kylling med ingefær og chilli saus (sterk) <span class="allergy-info-inline">(A)(B)(G)</span></h5>
<p class="item-description">Fried chicken with ginger and chili sauce (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">14. Kylling med Gon Bao saus (sterk) <span class="allergy-info-inline">(A)(C)</span></h5>
<p class="item-description">Chicken with Gon Bao sauce (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">15. Kyllingspyd med Satay saus <span class="allergy-info-inline">(B)(C)(G)</span></h5>
<p class="item-description">Chicken with Satay sauce</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">16. Kylling med Sze Chuen saus (sterk) <span class="allergy-info-inline"></span></h5>
<p class="item-description">Chicken with Sze Chuen sauce (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">17. Kylling i skiver med grønn karri og kokos saus (sterk) <span class="allergy-info-inline">(D)</span></h5>
<p class="item-description">Chicken with green curry and coconut sauce (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">107. Fritert kylling med hvitløk og chilli saus (sterk) <span class="allergy-info-inline">(A)(B)(G)</span></h5>
<p class="item-description">Deep fried chicken with garlic and chili sauce (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">108. Kyllingfilet på Kinesisk-vis (sterk) <span class="allergy-info-inline">(A)</span></h5>
<p class="item-description">Chicken in Chinese style (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
</div>
<br><p class="text-xs text-gray-500 mb-2">Alle hovedretter serveres med ris.</p>
</div>
<div class="card p-6 mb-8 md:break-inside-avoid">
<h3 class="text-green-700 menu-category-title">Oksekjøtt / Beef</h3>
<div class="space-y-4">
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">18. Biff Chop Suey <span class="allergy-info-inline">(A)</span></h5>
<p class="item-description">Beef Chop Seuy</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">200,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">220,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">109. Biff med cashewnøtter <span class="allergy-info-inline">(A)(E)</span></h5>
<p class="item-description">Beef with cashewnuts</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">220,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">240,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">19. Oksekjøtt i skiver med brokkoli <span class="allergy-info-inline">(A)</span></h5>
<p class="item-description">Beef with broccoli</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">20. Oksekjøtt i skiver med regnbuegrønnsaker (sterk) <span class="allergy-info-inline">(A)(G)</span></h5>
<p class="item-description">Rainbow beef (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">200,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">21. Oksekjøtt med Sze Chuen saus (sterk) <span class="allergy-info-inline"></span></h5>
<p class="item-description">Beef with Sze Chuen sauce (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">22. Oksekjøtt med Gon Bao saus (sterk) <span class="allergy-info-inline">(A)(C)(G)</span></h5>
<p class="item-description">Beef with Gon Bao sauce (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">23. Oksekjøtt i skiver med ananas <span class="allergy-info-inline"></span></h5>
<p class="item-description">Beef with pineapple</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">200,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">220,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">24. Oksekjøtt i skiver med karrisaus <span class="allergy-info-inline">(D)</span></h5>
<p class="item-description">Beef with curry sauce</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">200,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">220,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">25. Kinesisk pepper biff <span class="allergy-info-inline">(A)(B)(G)</span></h5>
<p class="item-description">Chinese pepperbeef</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">235,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">260,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">26. Oksekjøtt i skiver med hvitløk og chilli saus(Sterk) <span class="allergy-info-inline">(A)</span></h5>
<p class="item-description">Beef with garlic and chilli sauce (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">27. Oksekjøtt i skiver med rød karri og kokos saus (sterk) <span class="allergy-info-inline">(D)</span></h5>
<p class="item-description">Beef with red curry and coconut sauce (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">28. Oksekjøtt i skiver med sorte bønner saus (sterk) <span class="allergy-info-inline">(A)</span></h5>
<p class="item-description">Beef with black beans sauce (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">200,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">29. Oksekjøtt med Satay saus på spyd <span class="allergy-info-inline">(B)(C)(G)</span></h5>
<p class="item-description">Beef with Satay sauce</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">30. Oksekjøtt på Kinesisk-vis (sterk) <span class="allergy-info-inline">(A)(G)</span></h5>
<p class="item-description">Beef in Chinese style (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">301. Oksekjøtt med ingefær og chilli saus (sterk) <span class="allergy-info-inline">(A)(G)</span></h5>
<p class="item-description">Beef with ginger and chilli (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
</div>
<br><p class="text-xs text-gray-500 mb-2">Alle hovedretter serveres med ris.</p>
</div>
<div class="card p-6 mb-8 md:break-inside-avoid">
<h3 class="text-green-700 menu-category-title">Svinekjøtt / Pork</h3>
<div class="space-y-4">
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">31. Svinekjøtt i skiver med grønnsaker <span class="allergy-info-inline">(A)</span></h5>
<p class="item-description">Pork Chop Seuy</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">200,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">220,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">32. Svinekjøtt i skiver med ingefær og chilli saus (sterk) <span class="allergy-info-inline">(A)(G)</span></h5>
<p class="item-description">Pork with ginger and chilli sauce (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">302. Fritert svinekjøtt med Satay saus <span class="allergy-info-inline">(B)(C)(G)</span></h5>
<p class="item-description">Pork with Satay sauce</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">33. Fritert svinekjøtt med søt-sur saus <span class="allergy-info-inline">(B)(G)</span></h5>
<p class="item-description">Sweet and sour pork</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">34. Fritert svinekjøtt med pepper saus <span class="allergy-info-inline">(A)(B)(G)</span></h5>
<p class="item-description">Deep fried pork with pepper sauce</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">200,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">303. Fritert svinekjøtt med hvitløk og chilli (sterk) <span class="allergy-info-inline">(A)(B)(C)(G)</span></h5>
<p class="item-description">Deep fried pork with garlic and chilli (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">210,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">230,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">304. Svineribber med B.B.Q. Saus <span class="allergy-info-inline">(B)(G)</span></h5>
<p class="item-description">Spare-ribs with B. B. Q. sauce</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">250,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">279,-</span></p>
</div>
</div>
</div>
<div class="menu-item">
<div class="flex justify-between items-start">
<div>
<h5 class="font-semibold">305. Stekt svineribber på Kinesisk-vis (sterk) <span class="allergy-info-inline">(A)(B)(G)</span></h5>
<p class="item-description">Spare-ribs in Chinese style (spicy)</p>
</div>
<div class="text-right ml-2 flex-shrink-0">
<p><span class="price-label">ta med:</span> <span class="price-amount">240,-</span></p>
<p><span class="price-label">spis her:</span> <span class="price-amount">269,-</span></p>
</div>
</div>
</div>
</div>
<br><p class="text-xs text-gray-500 mb-2">Alle hovedretter serveres med ris.</p>
</div>
<div class="card p-6 mb-8 md:break-inside-avoid">
<h3 class="text-green-700 menu-category-title">Nudler / Noodles</h3>
<div class="space-y-4">