// Footer.jsx — Jetsites footer const Footer = () => { const year = new Date().getFullYear(); const scrollTo = (id) => (e) => { e.preventDefault(); const el = document.getElementById(id); if (el) el.scrollIntoView({ behavior: 'smooth', block: 'start' }); }; return ( ); }; window.Footer = Footer;