"use client" import { useEffect } from "react" import Swiper from "swiper" import "swiper/css" import "swiper/css/pagination" import { Pagination, Autoplay } from "swiper/modules" export default function Testimonial() { useEffect(() => { new Swiper(".testimonialSwiper", { modules: [Pagination, Autoplay], loop: true, slidesPerView: 3, spaceBetween: 30, speed: 4000, // 🔥 smooth continuous autoplay: { delay: 0, // ❌ no stop disableOnInteraction: false, }, freeMode: true, freeModeMomentum: false, pagination: { el: ".testimonial-pagination", clickable: true, }, breakpoints: { 0: { slidesPerView: 1.2 }, 768: { slidesPerView: 2 }, 1024: { slidesPerView: 3 } } }) }, []) return (
{/* TOP */}
What Our Customers Say

Real reviews from real Texas homeowners

{/* CARD 1 */}

“Our new kitchen is perfect! The team was professional, on time, and the quality is outstanding.”

Sarah T.
San Antonio
See Project →
{/* CARD 2 */}

“We couldn’t be happier with our new sunroom! The team showed up on time and demonstrated incredible professionalism from start to finish. Their workmanship truly surpassed our expectations. Adding this space has been the best decision we’ve made for our home! We’re thrilled with how it turned out. It has transformed our living area into a bright and inviting space.”

Jessica L.
Dallas
See Project →
{/* CARD 3 */}

“Amazing experience! Highly recommended for any renovation work.”

Emily R.
Austin
See Project →
{/* REPEAT SAME CARDS (important for smooth loop) */}

“We couldn’t be happier with our new sunroom! The team showed up on time and demonstrated incredible professionalism from start to finish.”

Jessica L.
Dallas
See Project →

“Our new kitchen is perfect! The team was professional, on time, and the quality is outstanding.”

Sarah T.
San Antonio
See Project →
{/* DOTS */}
) }