/* global React, Icon */ const ContactPage = () => { const [form, setForm] = React.useState({ name: '', email: '', phone: '', service: "Nettoyage d'Entreprises", message: '', }); const [sent, setSent] = React.useState(false); const update = (k) => (e) => setForm({ ...form, [k]: e.target.value }); const submit = (e) => { e.preventDefault(); setSent(true); setTimeout(() => setSent(false), 4500); }; const inputStyle = { width: '100%', padding: '14px 18px', border: '2px solid rgba(255,255,255,0.4)', borderRadius: 10, fontFamily: 'Inter, sans-serif', fontSize: '0.95rem', background: 'white', color: '#0f172a', outline: 'none', transition: 'border-color 0.2s, background 0.2s, box-shadow 0.2s', }; const labelStyle = { fontFamily: 'Poppins, sans-serif', fontWeight: 600, fontSize: '0.82rem', color: 'rgba(255,255,255,0.9)', marginBottom: 7, display: 'block', letterSpacing: '0.02em', }; return (
{/* HERO HEADER */}
Nous contacter

Parlons de votre projet.

Un devis, une question, une urgence ? Notre équipe vous répond sous 24h ouvrées.

{/* FORM CENTERED */}
{/* Form card */}
{/* Colored top bar */}

Envoyez-nous un message

Remplissez le formulaire et nous vous recontactons rapidement.

{/* Form body */}
{ e.target.style.borderColor = '#059669'; e.target.style.boxShadow = '0 0 0 3px rgba(16,185,129,0.2)'; }} onBlur={e => { e.target.style.borderColor = 'rgba(255,255,255,0.4)'; e.target.style.boxShadow = 'none'; }}/>
{ e.target.style.borderColor = '#059669'; e.target.style.boxShadow = '0 0 0 3px rgba(16,185,129,0.2)'; }} onBlur={e => { e.target.style.borderColor = 'rgba(255,255,255,0.4)'; e.target.style.boxShadow = 'none'; }}/>
{ e.target.style.borderColor = '#059669'; e.target.style.boxShadow = '0 0 0 3px rgba(16,185,129,0.2)'; }} onBlur={e => { e.target.style.borderColor = 'rgba(255,255,255,0.4)'; e.target.style.boxShadow = 'none'; }}/>