class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` JCode Evolution Home Timeline Features Full Log `; } } customElements.define('custom-navbar', CustomNavbar);