function Footer() { const { lang, t } = useLang(); const year = new Date().getFullYear(); const siteVersion = window.__OFUQ_SITE_VERSION__ || 'v1.0.0'; const goTo = (id) => { const el = document.getElementById(id); if (el) { const top = el.getBoundingClientRect().top + window.scrollY - 70; window.scrollTo({ top, behavior: 'smooth' }); } }; return ( ); } window.Footer = Footer;