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