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