From 0d85c06be2c0f05300c0006eb599ce8a7fec855a Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 19 Mar 2025 10:11:26 -0700 Subject: [PATCH] refactor: Adjust testimonial rotation interval in home.html --- aider/website/home.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); });