class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` Mrs T's Funhouse Dashboard Create Projects Help Download `; } } customElements.define('custom-navbar', CustomNavbar);