"use client"; import { Mail, Phone, MapPin, Clock } from "lucide-react"; import { Card, CardHeader, CardTitle, CardContent } from "@/components/ui/card"; import { config } from "@/lib/config"; export default function ContactSection() { const contact = config.contact; return ( Nous contacter {contact.phone && (

Téléphone

{contact.phone}
)} {contact.whatsapp && (

WhatsApp

{contact.whatsapp}
)} {contact.email && (

Email

{contact.email}
)} {contact.address && (

Adresse

{contact.address}

)} {contact.hours && (

Horaires

{contact.hours}

)}
); }