class HeroImageSection extends HTMLElement {
constructor() {
super();
}
async connectedCallback() {
const input = document.createElement("div");
input.innerHTML = /*html*/ `
- Access up to 65% of projected revenue with non-dilutive debt capital
- Grow quickly with our low cost of capital and no hidden charges
- Access our strategic network of regulated NBFC partners in India
- Obtain upfront capital quickly to accelerate your SaaS business
`;
this.appendChild(input);
}
}
window.customElements.define("hero-image-section", HeroImageSection);