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

Build amazing things faster

SkyWork helps you streamline your workflow and collaborate with your team more effectively than ever before.

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