class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` PySQL Labs Features How It Works Challenges Dashboard Log In Sign Up Free Features How It Works Challenges Dashboard Log In Sign Up Free `; // Initialize Feather Icons in shadow DOM setTimeout(() => { if (typeof feather !== 'undefined') { feather.replace(); } }, 100); } } customElements.define('custom-navbar', CustomNavbar);