class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` MAXYDigital Services Process About Clients Get Started Services About Contact Get Started `; } } customElements.define('custom-navbar', CustomNavbar);