class HeroImageSection extends HTMLElement { constructor() { super(); } async connectedCallback() { const input = document.createElement("div"); input.innerHTML = /*html*/ `
Supercharge Your SaaS Growth in India!
`; this.appendChild(input); } } window.customElements.define("hero-image-section", HeroImageSection);