class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` HandSpeak AI Home About Pricing Contact `; } } customElements.define('custom-navbar', CustomNavbar);