Merge version_4 into main #6

Merged
bender merged 1 commits from version_4 into main 2026-04-15 07:45:57 +00:00

View File

@@ -37,7 +37,7 @@ export default function MenuPage() {
<ProductCardOne
title="Our Menu"
description="All prices in Thai Baht are subject to 10% service charge and 7% VAT."
gridVariant="three-columns-all-equal-width"
gridVariant="four-items-2x2-equal-grid"
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
@@ -72,6 +72,21 @@ export default function MenuPage() {
{ id: "d5", name: "Pudding Au Citron", price: "150" }
].map(p => ({ ...p, imageSrc: "https://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg" }))}
/>
<div className="mt-16">
<ProductCardOne
title="Recommended for You"
gridVariant="asymmetric-60-wide-40-narrow"
animationType="slide-up"
textboxLayout="default"
carouselMode="auto"
products={[
{ id: "rec1", name: "Signature Uni Pie", price: "790", imageSrc: "https://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg" },
{ id: "rec2", name: "Beef Shabu Shabu", price: "720", imageSrc: "https://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg" },
{ id: "rec3", name: "Blue Crab 2 Ways", price: "890", imageSrc: "https://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg" }
]}
/>
</div>
</div>
<FooterBaseReveal