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

What Our Customers Say

Don't just take our word for it. Here's what our customers have to say.

Sarah Johnson

Sarah Johnson

Marketing Director

"SkyWork has completely transformed how our team collaborates. We've seen a 40% increase in productivity since we started using it."

Michael Chen

Michael Chen

CTO

"The developer tools and API integration are top-notch. We were able to customize SkyWork to fit our exact needs."

Emma Rodriguez

Emma Rodriguez

Product Manager

"The analytics dashboard gives us incredible insights into our workflow. We've identified and fixed several bottlenecks thanks to SkyWork."

`; } } customElements.define('custom-testimonials', CustomTestimonials);