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