Are you looking to add a French Bulldog to your family in Atlanta, Georgia? Look no further than Furever Partners Kennel, a reputable dog...
Nicole S B McCoy
Oct 24, 20241 min read
bottom of page
let testimonials = [
{ text: "Our Frenchie from Furever Partners is the sweetest...", author: "Jessica T., Atlanta" },
{ text: "The team kept us updated every week...", author: "Daniel M., Roswell" }
];
let currentIdx = 0;
function rotateTestimonial() {
$w('#testimonialText').text = testimonials[currentIdx].text;
$w('#testimonialAuthor').text = testimonials[currentIdx].author;
currentIdx = (currentIdx + 1) % testimonials.length;
}
$w.onReady(() => {
setInterval(rotateTestimonial, 6000); // change every 6 seconds
rotateTestimonial(); // show first on load
});