class BloomFooter extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
`;
// Initialize icons after rendering
setTimeout(() => {
if (typeof feather !== 'undefined') {
this.shadowRoot.querySelectorAll('[data-feather]').forEach(el => {
feather.replace();
});
}
}, 100);
}
}
customElements.define('bloom-footer', BloomFooter);