Merge version_4 into main #7

Merged
bender merged 3 commits from version_4 into main 2026-04-23 11:44:24 +00:00
3 changed files with 57 additions and 5 deletions

View File

@@ -0,0 +1,26 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function DebouchagePage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleCentered
navItems={[{name: "Accueil", id: "/"}, {name: "Débouchage", id: "/debouchage"}, {name: "Plomberie", id: "/plomberie"}]}
brandName="Maes Débouchage"
/>
<div className="pt-32 pb-20 px-8 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-6">Services de Débouchage</h1>
<p>Nos experts interviennent sur tous types d'obstructions de canalisations, utilisant des techniques haute pression pour garantir un résultat durable.</p>
</div>
<ContactCTA tag="Débouchage" title="Besoin d'un débouchage ?" description="Contactez-nous pour une intervention rapide." buttons={[{text: "Appeler"}]} />
<FooterLogoEmphasis logoText="Maes Débouchage" columns={[]} />
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -32,9 +32,9 @@ export default function LandingPage() {
<NavbarStyleCentered
navItems={[
{ name: "Accueil", id: "hero" },
{ name: "Services", id: "services" },
{ name: "Débouchage", id: "/debouchage" },
{ name: "Plomberie", id: "/plomberie" },
{ name: "À propos", id: "about" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" },
]}
brandName="Maes Débouchage"
@@ -167,8 +167,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{ items: [{ label: "Accueil", href: "#hero" }, { label: "Services", href: "#services" }] },
{ items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
{ items: [{ label: "Accueil", href: "/" }, { label: "Débouchage", href: "/debouchage" }, { label: "Plomberie", href: "/plomberie" }] },
{ items: [{ label: "FAQ", href: "/" }, { label: "Contact", href: "/" }] },
{ items: [{ label: "Mentions Légales", href: "#" }, { label: "Politique de confidentialité", href: "#" }] }
]}
logoText="Maes Débouchage"
@@ -177,4 +177,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -0,0 +1,26 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function PlomberiePage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleCentered
navItems={[{name: "Accueil", id: "/"}, {name: "Débouchage", id: "/debouchage"}, {name: "Plomberie", id: "/plomberie"}]}
brandName="Maes Débouchage"
/>
<div className="pt-32 pb-20 px-8 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-6">Services de Plomberie</h1>
<p>Nous assurons tous vos travaux de plomberie générale, de la réparation de fuites à la rénovation complète de vos installations sanitaires.</p>
</div>
<ContactCTA tag="Plomberie" title="Besoin d'un plombier ?" description="Intervention rapide pour tout problème de plomberie." buttons={[{text: "Appeler"}]} />
<FooterLogoEmphasis logoText="Maes Débouchage" columns={[]} />
</ReactLenis>
</ThemeProvider>
);
}