class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` SpeedyStack Home API Docs Dashboard `; } } customElements.define('custom-navbar', CustomNavbar);