class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` ShadowWeave Create Gallery Models Spells Sign In `; } } customElements.define('custom-navbar', CustomNavbar);