import type { Metadata } from "next"; import Navbar from "@/components/marketing/Navbar"; import Footer from "@/components/marketing/Footer"; import ScrollReveal from "@/components/animations/ScrollReveal"; import ContactForm from "@/components/marketing/ContactForm"; import { getSiteConfig } from "@/lib/content"; export async function generateMetadata(): Promise { const config = await getSiteConfig(); return { title: "Contact & Devis Gratuit | OBC Maçonnerie Nord", description: "Contactez OBC Maçonnerie pour un devis gratuit. Benoît Colin intervient à Orchies, Douai, Valenciennes et dans un rayon de 30km autour de Mouchin (59).", alternates: { canonical: `${config.url}/contact` }, }; } export default async function ContactPage() { const config = await getSiteConfig(); const { phone, phoneRaw, email, address, zones, zoneDescription } = config; return (
{/* Page hero */}
Devis gratuit — Réponse sous 24h

Parlons de
votre projet

{/* Split content */}
{/* Gauche — infos */}

Nos coordonnées

{/* Téléphone */}

Téléphone

{phone}

Lun–Sam 7h–19h

{/* Email */}

Email

{email}

Réponse sous 24h

{/* Adresse */}

Siège

{address}

Rayon d'intervention : {zoneDescription}

{/* Zones */}

Zone d'intervention

{zones.map((z) => ( {z} ))}
{/* Garanties */}
{[ { val: "Gratuit", label: "Devis + déplacement" }, { val: "24h", label: "Délai de réponse" }, { val: "15+", label: "Ans d'expérience" }, { val: "Sans engagement", label: "Aucune obligation" }, ].map((s) => (
{s.val}
{s.label}
))}
{/* Droite — formulaire */}
Demande de devis

Votre projet

); }