diff --git a/aider/website/home.html b/aider/website/home.html index cc24d167e..81ff82d1e 100644 --- a/aider/website/home.html +++ b/aider/website/home.html @@ -663,7 +663,7 @@ aider --model gpt-4o --api-key openai=your-key-goes-here document.addEventListener('DOMContentLoaded', function() { updateTestimonials(); - // Rotate testimonials every 30 seconds + // Rotate testimonials setInterval(function() { // Remove first testimonial and add a random one from the remaining pool initialTestimonials.shift(); @@ -682,7 +682,7 @@ aider --model gpt-4o --api-key openai=your-key-goes-here } updateTestimonials(); - }, 30000); + }, 3000); });