// Footer — inverted. Nav columns + verbatim legal. function Footer() { const cols = [ ['Hosting', [['Web hosting', 'services'], ['Business email', 'services'], ['Cloud storage', 'services'], ['GPU compute', 'hardware']]], ['Company', [['About', 'team'], ['Privacy', 'security'], ['Pricing', 'pricing'], ['Contact', 'contact']]], ['Legal', [['Terms', 'Terms.html'], ['Privacy policy', 'Privacy%20Policy.html'], ['Data processing (DPA)', 'Data%20Processing.html']]], ]; const go = (id) => (e) => { e.preventDefault(); const el = document.getElementById(id); if (el) window.scrollTo({ top: el.offsetTop - 56, behavior: 'smooth' }); }; return ( ); } window.Footer = Footer;