class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` CodeDex Challenges Projects Learn Community Blog New Project Python JavaScript Web Dev Challenges Projects Community Build `; } } customElements.define('custom-navbar', CustomNavbar);