class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` Sourish Dey Home About Education Skills Projects Certifications Contact Home About Education Skills Projects Certifications Contact Toggle Theme `; } } customElements.define('custom-navbar', CustomNavbar);