class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` TextileTech Solution Modules Avantages Contact Demander une démo `; } } customElements.define('custom-navbar', CustomNavbar);