class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` VogueVista Women Men Accessories Collections About Cart (0) `; } } customElements.define('custom-navbar', CustomNavbar);