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) {