class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` NanoMatter About Technologies Services Partnerships Contact `; } } customElements.define('custom-navbar', CustomNavbar);