class CustomHero extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

Your Pathway to a Better Life

Navigate government services, access benefits, learn English, and track your immigration journey all in one place.

`; } } customElements.define('custom-hero', CustomHero);