From 8a9be54ca969aeb69dd1fb364ed61bc03a219908 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 21:48:07 +0000 Subject: [PATCH 1/2] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 49 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..144c755 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,49 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; + +export default function ContactPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file -- 2.49.1 From cc642cdfc5925236df3674c4d198af0a9d41d663 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 11 Apr 2026 21:48:07 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 193 +++-------------------------------------------- 1 file changed, 11 insertions(+), 182 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 212da81..80f0fc3 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,26 +29,11 @@ export default function LandingPage() { @@ -111,151 +68,23 @@ export default function LandingPage() { animationType="slide-up" textboxLayout="split-description" gridVariant="three-columns-all-equal-width" - useInvertedBackground={false} products={[ - { - id: "1", - name: "Dibi traditionnel revisité", - price: "12 000 FCFA", - imageSrc: "http://img.b2bpic.net/free-photo/delicious-black-jelly-dessert-plate_23-2148238723.jpg", - }, - { - id: "2", - name: "Poulet Royal aux épices", - price: "9 500 FCFA", - imageSrc: "http://img.b2bpic.net/free-photo/purple-rice-berries-cooked-with-grilled-chicken-breast-pumpkin-carrots-mint-leaves-dish-clean-food_1150-20159.jpg", - }, - { - id: "3", - name: "Poisson braisé sauce chef", - price: "15 000 FCFA", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-smoked-fish-plate-balyk-salmon-with-herbs-pomegranate-lemon-slices_141793-4129.jpg", - }, - { - id: "4", - name: "Sorbet exotique", - price: "4 500 FCFA", - imageSrc: "http://img.b2bpic.net/free-photo/woman-confectioner-making-gingerbread-sunflower-gingerbread-design_169016-19996.jpg", - }, - { - id: "5", - name: "Cocktail Palace du Prince", - price: "3 500 FCFA", - imageSrc: "http://img.b2bpic.net/free-photo/woman-taking-cherry-jam-from-crystal-pot-into-saucer-tea-setup_140725-528.jpg", - }, - { - id: "6", - name: "Entrée raffinée du jour", - price: "6 000 FCFA", - imageSrc: "http://img.b2bpic.net/free-photo/front-view-sliced-potato-pies-with-mushed-pumpkin-tomatoes-grey-background-oven-cake-pie-bake-color_140725-110272.jpg", - }, + { id: "1", name: "Dibi traditionnel revisité", price: "12 000 FCFA", imageSrc: "http://img.b2bpic.net/free-photo/delicious-black-jelly-dessert-plate_23-2148238723.jpg" }, + { id: "2", name: "Poulet Royal aux épices", price: "9 500 FCFA", imageSrc: "http://img.b2bpic.net/free-photo/purple-rice-berries-cooked-with-grilled-chicken-breast-pumpkin-carrots-mint-leaves-dish-clean-food_1150-20159.jpg" }, + { id: "3", name: "Poisson braisé sauce chef", price: "15 000 FCFA", imageSrc: "http://img.b2bpic.net/free-photo/top-view-smoked-fish-plate-balyk-salmon-with-herbs-pomegranate-lemon-slices_141793-4129.jpg" } ]} title="Découvrez notre menu" description="Une sélection rigoureuse de saveurs locales et internationales préparées avec passion." /> -
- -
- -
- -
- -- 2.49.1