class CustomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
`;
// Initialize feather icons in shadow DOM
import('https://unpkg.com/feather-icons').then(() => {
feather.replace();
});
}
}
customElements.define('custom-footer', CustomFooter);