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

Your AI-Powered Selling Assistant

Create professional listings in seconds with our smart AI technology. Just upload a photo and let SBert handle the rest!

SBert AI Interface
`; } } customElements.define('custom-hero', CustomHero);