class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` GhostStack Dashboard Candidates Analytics Resources Sign In Get Started `; } } customElements.define('custom-header', CustomHeader);