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