Merge version_7 into main #9

Merged
bender merged 1 commits from version_7 into main 2026-05-07 17:49:40 +00:00

View File

@@ -8,7 +8,18 @@ import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function MenuPage() {
return (
<ThemeProvider>
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<NavbarStyleCentered navItems={[{ name: "Retour Accueil", id: "/" }]} brandName="KOLLA" />
<div className="pt-32 pb-16">
@@ -19,12 +30,12 @@ export default function MenuPage() {
animationType="slide-up"
textboxLayout="default"
products={[
{ id: "1", brand: "Entrées", name: "Raviolis Mandu", price: "9€", imageSrc: "http://img.b2bpic.net/free-photo/fried-pork-topped-with-sesame-placed-black-dish_1150-23120.jpg" },
{ id: "2", brand: "Crêpes", name: "Kimchijeon", price: "12€", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-candies-with-cake-inside-plate-dark-background-tea-biscuit-candy-cake-sweet_140725-116350.jpg" },
{ id: "3", brand: "Bibimbap", name: "Bibimbap Traditionnel", price: "18€", imageSrc: "http://img.b2bpic.net/free-photo/sukiyaki-seafood-served-with-suki-spicy-sauce_1150-27335.jpg" },
{ id: "4", brand: "Kimbap", name: "Kimbap Boeuf", price: "10€", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-fried-meat-potato-black-tray_181624-28399.jpg" },
{ id: "5", brand: "Grillades", name: "Bulgogi", price: "24€", imageSrc: "http://img.b2bpic.net/free-photo/tom-yum-kung-bowl-with-tomato-chili-lemongrass-garlic-lemon-kaffir-lime-leaves_1150-25787.jpg" },
{ id: "6", brand: "Boissons", name: "Soju Traditionnel", price: "15€", imageSrc: "http://img.b2bpic.net/free-photo/healthy-chinese-cabbage-salad-plate-wooden-table_123827-21097.jpg" }
{ id: "1", brand: "Entrées", name: "Raviolis Mandu", price: "9€", rating: 4, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/fried-pork-topped-with-sesame-placed-black-dish_1150-23120.jpg" },
{ id: "2", brand: "Crêpes", name: "Kimchijeon", price: "12€", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-sweet-candies-with-cake-inside-plate-dark-background-tea-biscuit-candy-cake-sweet_140725-116350.jpg" },
{ id: "3", brand: "Bibimbap", name: "Bibimbap Traditionnel", price: "18€", rating: 5, reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/sukiyaki-seafood-served-with-suki-spicy-sauce_1150-27335.jpg" },
{ id: "4", brand: "Kimbap", name: "Kimbap Boeuf", price: "10€", rating: 4, reviewCount: "95", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-shot-delicious-fried-meat-potato-black-tray_181624-28399.jpg" },
{ id: "5", brand: "Grillades", name: "Bulgogi", price: "24€", rating: 5, reviewCount: "340", imageSrc: "http://img.b2bpic.net/free-photo/tom-yum-kung-bowl-with-tomato-chili-lemongrass-garlic-lemon-kaffir-lime-leaves_1150-25787.jpg" },
{ id: "6", brand: "Boissons", name: "Soju Traditionnel", price: "15€", rating: 4, reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/healthy-chinese-cabbage-salad-plate-wooden-table_123827-21097.jpg" }
]}
/>
<div className="max-w-4xl mx-auto p-12 bg-card rounded-lg mt-8">
@@ -35,6 +46,7 @@ export default function MenuPage() {
</div>
<FooterMedia
logoText="KOLLA Grill Coréen"
videoSrc="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
columns={[{ title: "Liens", items: [{ label: "Accueil", href: "/" }] }]}
/>
</ReactLenis>