5 Commits

Author SHA1 Message Date
884f6616d9 Update src/app/menu/page.tsx 2026-05-07 17:50:04 +00:00
1cd3a0461a Update src/app/menu/page.tsx 2026-05-07 17:49:37 +00:00
baa7a01bf9 Update src/app/page.tsx 2026-05-07 17:49:11 +00:00
1ca7931b44 Add src/app/menu/page.tsx 2026-05-07 17:49:11 +00:00
648a8c662f Merge version_6 into main
Merge version_6 into main
2026-05-07 17:34:21 +00:00
2 changed files with 62 additions and 3 deletions

56
src/app/menu/page.tsx Normal file
View File

@@ -0,0 +1,56 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function MenuPage() {
return (
<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">
<ProductCardTwo
title="Carte Complète KOLLA"
description="Découvrez nos spécialités coréennes : entrées, crêpes, bibimbap, grillades et menus midi."
gridVariant="uniform-all-items-equal"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ 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">
<h2 className="text-2xl font-bold mb-4">Infos Pratiques</h2>
<p><strong>Paiement :</strong> Espèces, Cartes Bancaires, Titres Restaurant.</p>
<p><strong>Livraison :</strong> Disponible via nos partenaires habituels.</p>
</div>
</div>
<FooterMedia
logoText="KOLLA Grill Coréen"
videoSrc="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
columns={[{ title: "Liens", items: [{ label: "Accueil", href: "/" }] }]}
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -12,8 +12,10 @@ import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import { useRouter } from "next/navigation";
export default function LandingPage() {
const router = useRouter();
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -33,7 +35,7 @@ export default function LandingPage() {
navItems={[
{ name: "Accueil", id: "hero" },
{ name: "Notre Histoire", id: "about" },
{ name: "Menu", id: "products" },
{ name: "Menu", id: "/menu" },
{ name: "Avis", id: "testimonials" },
{ name: "Contact", id: "contact" }
]}
@@ -56,7 +58,7 @@ export default function LandingPage() {
]}
buttons={[
{ text: "Réserver une table", href: "#contact" },
{ text: "Voir le Menu", href: "#products" }
{ text: "Voir le Menu", onClick: () => router.push("/menu") }
]}
imageSrc="http://img.b2bpic.net/free-photo/decoration-bean-old-closeup-aroma_1203-5601.jpg"
imageAlt="authentic korean barbecue restaurant interior"
@@ -118,6 +120,7 @@ export default function LandingPage() {
]}
title="Menu Signature KOLLA"
description="Une sélection riche des meilleures spécialités coréennes, de nos entrées croustillantes jusqu'à nos grills au charbon."
buttons={[{ text: "Voir Tout le Menu", onClick: () => router.push("/menu") }]}
/>
</div>
@@ -208,4 +211,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}