class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` 🚀 MissionQuest Missions Comment ça marche Commencer `; } } customElements.define('custom-navbar', CustomNavbar);