class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` DataAlchemy About Experience Projects Education Publications Blog Contact `; } } customElements.define('custom-navbar', CustomNavbar);