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