class CustomCtaBanner extends HTMLElement { connectedCallback() { const title = this.getAttribute('title') || 'Ready to get started?'; const buttonText = this.getAttribute('button-text') || 'Contact Us'; const link = this.getAttribute('link') || '#contact'; this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

${title}

${buttonText}
`; } } customElements.define('custom-cta-banner', CustomCtaBanner);