From e31eb9a7f3f22a68cff958edf572cccab7c6e8b0 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 15 May 2026 17:49:08 +0000 Subject: [PATCH 1/6] Update src/app/comparison/page.tsx --- src/app/comparison/page.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/comparison/page.tsx b/src/app/comparison/page.tsx index c3bac39..fcbd6e6 100644 --- a/src/app/comparison/page.tsx +++ b/src/app/comparison/page.tsx @@ -4,6 +4,7 @@ import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import FooterBase from "@/components/sections/footer/FooterBase"; +import { Menu, X } from "lucide-react"; export default function ComparisonPage() { return ( @@ -31,6 +32,8 @@ export default function ComparisonPage() { { name: "Pricing", id: "pricing" } ]} button={{ text: "Démarrer", href: "#contact" }} + openIcon={Menu} + closeIcon={X} />

Page vide

From 4500b760027b7738e8a34b5dd6ffe55c707f82db Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 15 May 2026 17:49:09 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index ef2d76e..87689b5 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -5,6 +5,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import ContactSplit from "@/components/sections/contact/ContactSplit"; import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { Menu, X } from "lucide-react"; export default function ContactPage() { return ( @@ -32,6 +33,8 @@ export default function ContactPage() { { name: "Contact", id: "/contact" }, { name: "Tarifs", id: "pricing" } ]} + openIcon={Menu} + closeIcon={X} />
From 56727d640da7357cd07cd28aafefadcd476cf422 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 15 May 2026 17:49:09 +0000 Subject: [PATCH 3/6] Update src/app/page.tsx --- src/app/page.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 6bef43f..b697c8a 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,7 +11,7 @@ import FooterBase from "@/components/sections/footer/FooterBase"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; -import { Sparkles, Search, Award, Users, ArrowRight, CheckCircle } from "lucide-react"; +import { Sparkles, Search, Award, Users, ArrowRight, CheckCircle, Menu, X } from "lucide-react"; export default function WebAgency2Page() { return ( @@ -39,6 +39,8 @@ export default function WebAgency2Page() { { name: "Tarifs", id: "pricing" } ]} button={{ text: "Démarrer", href: "/contact" }} + openIcon={Menu} + closeIcon={X} /> ); -} +} \ No newline at end of file From b06b52a768eec6cc3c6b2296564d9fbebe1d742d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 15 May 2026 17:49:10 +0000 Subject: [PATCH 4/6] Update src/app/pricing/page.tsx --- src/app/pricing/page.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/pricing/page.tsx b/src/app/pricing/page.tsx index 26963cb..fb9dda9 100644 --- a/src/app/pricing/page.tsx +++ b/src/app/pricing/page.tsx @@ -5,6 +5,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import FooterBase from "@/components/sections/footer/FooterBase"; import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; +import { Menu, X } from "lucide-react"; export default function PricingPage() { return ( @@ -32,6 +33,8 @@ export default function PricingPage() { { name: "Pricing", id: "pricing" } ]} button={{ text: "Démarrer", href: "/contact" }} + openIcon={Menu} + closeIcon={X} />
Date: Fri, 15 May 2026 17:49:10 +0000 Subject: [PATCH 5/6] Update src/app/pricing-highlighted/page.tsx --- src/app/pricing-highlighted/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/pricing-highlighted/page.tsx b/src/app/pricing-highlighted/page.tsx index 44ab2e3..02d8b21 100644 --- a/src/app/pricing-highlighted/page.tsx +++ b/src/app/pricing-highlighted/page.tsx @@ -5,7 +5,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import FooterBase from "@/components/sections/footer/FooterBase"; import PricingCardOne from "@/components/sections/pricing/PricingCardOne"; -import { CheckCircle } from "lucide-react"; +import { CheckCircle, Menu, X } from "lucide-react"; export default function PricingHighlightedPage() { return ( @@ -33,6 +33,8 @@ export default function PricingHighlightedPage() { { name: "Pricing", id: "pricing" } ]} button={{ text: "Démarrer", href: "#contact" }} + openIcon={Menu} + closeIcon={X} />
Date: Fri, 15 May 2026 17:49:11 +0000 Subject: [PATCH 6/6] Update src/app/pricing-highlighted-cards/page.tsx --- src/app/pricing-highlighted-cards/page.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/app/pricing-highlighted-cards/page.tsx b/src/app/pricing-highlighted-cards/page.tsx index d8129e2..ca1220f 100644 --- a/src/app/pricing-highlighted-cards/page.tsx +++ b/src/app/pricing-highlighted-cards/page.tsx @@ -5,7 +5,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import FooterBase from "@/components/sections/footer/FooterBase"; import PricingCardTwo from "@/components/sections/pricing/PricingCardTwo"; -import { CheckCircle } from "lucide-react"; +import { CheckCircle, Menu, X } from "lucide-react"; export default function PricingHighlightedCardsPage() { return ( @@ -33,6 +33,8 @@ export default function PricingHighlightedCardsPage() { { name: "Pricing", id: "pricing" } ]} button={{ text: "Démarrer", href: "#contact" }} + openIcon={Menu} + closeIcon={X} />