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

MAXYMIZE Your Digital Potential

Digital solutions that strengthen brand identity and expand business reach in today's connected world.

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