const Footer = ({ dark = false }) => { const bg = dark ? "var(--ink-950)" : "var(--paper)"; const fg = dark ? "var(--paper)" : "var(--ink-900)"; const muted = dark ? "rgba(250,248,244,0.55)" : "var(--fg-muted)"; const border = dark ? "rgba(250,248,244,0.08)" : "var(--border)"; const services = [ ["Programmatic Advertising", "programmatic.html"], ["CTV Advertising", "ctv.html"], ["Mobile Development", "mobile-development.html"], ["Cloud Computing", "cloud-computing.html"], ]; const company = [ ["About", "about.html"], ["Apps", "apps.html"], ["Contact", "contact.html"], ]; const legal = [ ["Privacy", "privacy.html"], ["Terms", "terms.html"], ["Security", "security.html"], ["Cookies", "cookies.html"], ]; const colHead = { fontSize: 11, letterSpacing: "0.12em", textTransform: "uppercase", color: muted, fontWeight: 600, marginBottom: 18, fontFamily: "var(--font-mono)", }; const colLink = { fontSize: 14, color: fg, opacity: 0.82, textDecoration: "none", display: "block", padding: "6px 0", transition: "opacity 160ms", }; return ( ); }; window.Footer = Footer;