class SiteFooter extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); let currentLang = 'en'; window.addEventListener('langChanged', (e) => { currentLang = e.detail; this.render(); }); if(typeof localStorage !== 'undefined') { currentLang = localStorage.getItem('lang') || 'en'; } this.render(); } render() { const isArabic = currentLang === 'ar'; const dir = isArabic ? 'rtl' : 'ltr'; const copyTxt = isArabic ? 'جميع الحقوق محفوظة 2023' : 'All rights reserved 2023'; const builtTxt = isArabic ? 'صنع بكل حب' : 'Built with love'; this.shadowRoot.innerHTML = `
`; } } customElements.define('site-footer', SiteFooter);