import Link from "next/link"; import Navbar from "@/components/marketing/Navbar"; import Footer from "@/components/marketing/Footer"; import ScrollReveal from "@/components/animations/ScrollReveal"; import ContactForm from "@/components/marketing/ContactForm"; interface LocalSEOPageProps { ville: string; departement?: string; servicesPrincipaux: string[]; description: string; texteIntro: string; texteLocal: string; distanceMouchin?: string; } const services = [ { icon: "🏠", label: "Construction de maison", href: "/construction-maison" }, { icon: "🔨", label: "Rénovation", href: "/renovation" }, { icon: "💧", label: "Assainissement", href: "/assainissement" }, { icon: "🚧", label: "Création d'accès", href: "/creation-acces" }, { icon: "🏗️", label: "Démolition", href: "/demolition" }, ]; export default function LocalSEOPage({ ville, departement = "Nord (59)", servicesPrincipaux, description, texteIntro, texteLocal, distanceMouchin, }: LocalSEOPageProps) { return (
{/* Hero */}
📍 {ville} — {departement}

Maçon {ville} — Construction & Rénovation

{texteIntro}

{distanceMouchin && (

{distanceMouchin} de Mouchin (siège OBC Maçonnerie)

)}
Demander un devis gratuit 06 74 45 30 89
{/* Services */}

Nos services à {ville}

{services.map((s, i) => (
{s.icon}

{s.label}

))}
{/* Texte SEO local */}

OBC Maçonnerie intervient à {ville}

{texteLocal.split("\n").map((para, i) => (

{para}

))}
OBC

Benoît Colin — OBC Maçonnerie

221 Route de Saint-Amand, 59310 Mouchin

06 74 45 30 89
{/* Formulaire */}

Votre projet à {ville}

Devis gratuit — Réponse sous 24h

); }