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