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