'use client'; import { Mail, Phone, MapPin, Send } from 'lucide-react'; import { Button } from '@/components/ui/button'; import { Card, CardContent } from '@/components/ui/card'; import { useEffect, useRef } from 'react'; export default function Contact() { const sectionRef = useRef(null); useEffect(() => { const observer = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { entry.target.classList.add('animate-in'); } }); }, { threshold: 0.1 } ); const cards = sectionRef.current?.querySelectorAll('.fade-in-card'); cards?.forEach((card) => observer.observe(card)); return () => observer.disconnect(); }, []); const contactInfo = [ { icon: MapPin, title: 'Notre Zone d\'Intervention', content: 'Centre-Val de Loire (Orléans, Blois)', }, { icon: Phone, title: 'Téléphone', content: '+33 7 88 13 09 27', }, { icon: Mail, title: 'Email', content: 'maelle.alincant@gmail.com', }, ]; return (
Contactez-Nous

Parlons de Votre Projet

Vous souhaitez en savoir plus ou nous confier la gestion de votre bien ? Nous serons ravis d'échanger avec vous.

{contactInfo.map((info, index) => (

{info.title}

{info.content}

))}

Prêt à Démarrer Votre Projet ?

Confiez-nous dès maintenant la gestion de votre bien immobilier et découvrez une nouvelle façon de percevoir vos revenus locatifs, sans contrainte et en toute tranquillité.

Réponse garantie sous 24h

Votre satisfaction et la valorisation de votre patrimoine sont au cœur de nos préoccupations.

); }