class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` Ortopedia Géminis Inicio Servicios Contacto WhatsApp `; } } customElements.define('custom-navbar', CustomNavbar);