class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` CodeFlow Home Leaderboard Login `; } } customElements.define('custom-header', CustomHeader);