/* global React */ /* Footer PARTAGÉ du portail revendeur French Kits (identique à la page d'accueil : .h-footer). Config-driven (société / email / tel via window.PORTAIL_CONFIG, liens via window.EXTRANET_CONFIG). Inclut une pop-up "page en préparation" sur les liens éditoriaux pas encore prêts. */ function EcFooter() { const cfg = window.EXTRANET_CONFIG || {}; const pc = window.PORTAIL_CONFIG || {}; const T = (window.EcUI && window.EcUI.T) || {}; const base = cfg.base_url || ''; const isLogged = !!(window.CLIENT && window.CLIENT.nom); const societe = pc.societe || 'Émotions Créatives'; const marque = pc.marque || 'French Kits'; const email = pc.email || 'fabien@emotions-creatives.com'; const tel = pc.tel || '06 43 97 15 71'; const telHref = 'tel:' + tel.replace(/\s+/g, ''); const CORAL = T.coral || 'oklch(0.575 0.125 42)'; const PRIMARY = T.primary || 'oklch(0.62 0.14 40)'; const SERIF = T.serif || "'Playfair Display',serif"; const [soon, setSoon] = React.useState(false); const openSoon = (e) => { if (e) e.preventDefault(); setSoon(true); }; return ( {/* Pop-up "page en préparation" */} {soon && (
setSoon(false)} style={{ position: 'fixed', inset: 0, zIndex: 90, background: 'rgba(40,22,12,.42)', display: 'grid', placeItems: 'center', padding: 20 }}>
e.stopPropagation()} style={{ background: 'oklch(0.985 0.008 84)', borderRadius: 22, maxWidth: 440, width: '100%', padding: '34px 34px 30px', boxShadow: '0 40px 90px -30px rgba(40,20,10,.5)', textAlign: 'center', fontFamily: T.sans || "'Hanken Grotesk',sans-serif" }}>
🌿

Cette page arrive bientôt

On a préféré vous livrer d'abord les nouveautés avec cette nouvelle version du site. On travaille activement sur ces pages — elles vous seront très utiles. Merci de votre patience !

)}
); }