From 509fd1efcde8e6144fa15c63f4440028427ba31f Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 15:44:09 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 32 ++++++++++++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8d855f1..67b205a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,7 +12,9 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import SplitAbout from '@/components/sections/about/SplitAbout'; import TeamCardSix from '@/components/sections/team/TeamCardSix'; import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import { ShieldCheck, Smile, Sparkles, Zap } from "lucide-react"; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import MobileStickyBand from '@/components/MobileStickyBand'; +import { MapPin, ShieldCheck, Smile, Sparkles, Zap } from "lucide-react"; export default function LandingPage() { return ( @@ -45,7 +47,9 @@ export default function LandingPage() { { name: "FAQ", id: "#faq"}, { - name: "Contact", id: "#contact"}, + name: "Contact Rapide", id: "#contact"}, + { + name: "Contact & Accès", id: "#contact-details"}, ]} brandName="Dr Gharbi Mounib" /> @@ -213,6 +217,10 @@ export default function LandingPage() { showRating={true} title="Ce Que Nos Patients Disent" description="La satisfaction de nos patients est notre plus grande fierté. Lisez leurs témoignages et découvrez pourquoi ils nous font confiance pour leur santé bucco-dentaire et leur sourire." + buttons={[ + { + text: "Voir sur Google Maps", href: "https://www.google.com/maps/search/Dr+Gharbi+Mounib+El+Mourouj"}, + ]} /> @@ -251,6 +259,25 @@ export default function LandingPage() { /> +
+ +
+ + ); } -- 2.49.1 From cb1868cb88740933037ca53176e8a57c92f59e26 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 15:44:10 +0000 Subject: [PATCH 2/2] Add src/components/MobileStickyBand.tsx --- src/components/MobileStickyBand.tsx | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/components/MobileStickyBand.tsx diff --git a/src/components/MobileStickyBand.tsx b/src/components/MobileStickyBand.tsx new file mode 100644 index 0000000..d774d7d --- /dev/null +++ b/src/components/MobileStickyBand.tsx @@ -0,0 +1,27 @@ +"use client"; + +import React from 'react'; +import ButtonDirectionalHover from '@/components/button/ButtonDirectionalHover/ButtonDirectionalHover'; + +const MobileStickyBand = () => { + return ( +
+
+ + +
+
+ ); +}; + +export default MobileStickyBand; -- 2.49.1