class CustomNavbar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` CryptoPulse Pro Home Plans Contact More About Us Blog FAQ Sign In Get Started Open main menu Home Plans Contact About Us Sign In Register `; } } customElements.define('custom-navbar', CustomNavbar);