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

We craft digital experiences that matter

PixelPulse is a creative studio focused on building beautiful, functional websites and applications that help businesses grow.

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