class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` AI Builder Home Features Commands Install Get Started `; } } customElements.define('custom-navbar', CustomNavbar);