'use client' import Link from "next/link" import { Autoplay, Navigation, Pagination } from "swiper/modules" import { Swiper, SwiperSlide } from "swiper/react" const swiperOptions = { modules: [Autoplay, Pagination, Navigation], slidesPerView: 1, spaceBetween: 30, autoplay: { delay:2500, disableOnInteraction: false, }, loop: true, // Navigation navigation: { nextEl: '.h1n', prevEl: '.h1p', }, // Pagination pagination: { el: '.swiper-pagination', clickable: true, }, breakpoints: { 320: { slidesPerView: 1, // spaceBetween: 30, }, 575: { slidesPerView: 1, // spaceBetween: 30, }, 767: { slidesPerView: 1, // spaceBetween: 30, }, 991: { slidesPerView: 1, // spaceBetween: 30, }, 1199: { slidesPerView: 1, // spaceBetween: 30, }, 1350: { slidesPerView: 1, // spaceBetween: 30, }, } } export default function TestimonialSlider1() { return ( <>

“Rapha Rehab provided exceptional care and support throughout my physiotherapy sessions. The team’s professionalism and personalized approach helped me recover faster than I expected.”

{/*

Robert Fox

Dog Trainer
*/}

“The hand massage therapy at Rapha Rehab was incredibly effective in relieving my pain and tension. The therapists are skilled and truly caring.”

{/*

Robert Fox

Dog Trainer
*/}

“I highly recommend Rapha Rehab for anyone looking for top-quality physio services in Mississauga. The modern equipment and expert staff make a real difference.”

{/*

Robert Fox

Dog Trainer
*/}

“Excellent waterfront physio and rehab services. The calming environment combined with expert care made my rehabilitation a comfortable and successful experience.”

{/*

Robert Fox

Dog Trainer
*/}
) }