class HeaderCinema extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
`;
// Initialize feather icons
import('https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js').then(() => {
setTimeout(() => {
feather.replace();
}, 100);
});
}
}
customElements.define('header-cinema', HeaderCinema);