Merge version_4 into main #7
26
src/app/debouchage/page.tsx
Normal file
26
src/app/debouchage/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
26
src/app/plomberie/page.tsx
Normal file
26
src/app/plomberie/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user