function Footer() { const isMobile = useMediaQuery('(max-width: 768px)'); const cols = [ { title: 'Legal', links: [ { label: 'Privacy', href: 'privacy.html' }, { label: 'Terms', href: 'terms.html' }, { label: 'DPA', href: 'dpa.html' }, { label: 'Security', href: 'security.html' }, ] }, ]; return ( ); } window.Footer = Footer;