class CustomHeader extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = ` AuthPortal Features Pricing About Contact Log In Sign Up `; } } customElements.define('custom-header', CustomHeader);