class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` Quantum Gene Fortress Dashboard Features About PQC Secured `; } } customElements.define('custom-navbar', CustomNavbar);