From c49911f6aab15c358be008fb3f0c383c95f373ed Mon Sep 17 00:00:00 2001 From: Aditya <97450298+1234-ad@users.noreply.github.com> Date: Sat, 17 Jan 2026 14:55:33 +0530 Subject: [PATCH] fix: increase auto-scroll interval from 4s to 7s for better UX Fixes #44 - The auto-scroll timing was too fast at 4 seconds, making it difficult for users to read feature descriptions. Increased to 7 seconds to provide adequate time for users to absorb the content before the next slide appears. Changes: - Updated setInterval duration from 4000ms to 7000ms in FeaturesSection - Improves user experience by allowing more time to read feature details --- src/components/home/FeaturesSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/home/FeaturesSection.tsx b/src/components/home/FeaturesSection.tsx index c82fbe5..a2227ba 100644 --- a/src/components/home/FeaturesSection.tsx +++ b/src/components/home/FeaturesSection.tsx @@ -106,7 +106,7 @@ const FeaturesSection = () => { useEffect(() => { intervalRef.current = setInterval(() => { setCurrentIndex((prev) => (prev + 1) % features.length); - }, 4000); + }, 7000); return () => { if (intervalRef.current) {