/* 6ix Mela — footer with newsletter (→ GoHighLevel) + socials */ function Footer({ onNav }) { const [email, setEmail] = React.useState(''); const [done, setDone] = React.useState(false); const submit = (e) => { e.preventDefault(); if (email.includes('@') && email.includes('.')) { fetch('/wp-json/6ixmela/v1/ghl', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ hook: 'subscribers', email, source: 'footer' }), }).catch(() => {}); setDone(true); } }; return ( ); } window.Footer = Footer;