class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` Kai Overview Features Specs About Contact JOIN THE FUTURE `; } } customElements.define('custom-navbar', CustomNavbar);