
Our trainer was on Ninja Warrior
#1 Personal trainer South Yarra
Shed 5kg in 42 days or get a refund with training, nutrition, and accountability.
Without dead boring diets. And without burning hours in the gym. South Yarra location.
★
★
★
★
★
5 stars out of 196 reviews

${review.date}
${review.text}
`;
reviewContainer.appendChild(reviewElement);
});
// Clone the reviews for seamless infinite scrolling
reviewContainer.innerHTML += reviewContainer.innerHTML;
}
function scrollReviews() {
let scrollPosition = 0;
const totalWidth = reviewContainer.scrollWidth / 2;
const scrollSpeed = 0.5;
function scroll() {
scrollPosition += scrollSpeed;
if (scrollPosition >= totalWidth) {
scrollPosition = 0;
}
reviewContainer.style.transform = `translateX(-${scrollPosition}px)`;
requestAnimationFrame(scroll);
}
scroll();
}
populateReviews();
scrollReviews();
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', initReviewSlider);
} else {
initReviewSlider();
}
})();