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