class CustomFooter extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` `; setTimeout(() => { feather.replace(); }, 100); } } customElements.define('custom-footer', CustomFooter);