diff --git a/client/src/components/simple-carousel.tsx b/client/src/components/simple-carousel.tsx index bbf5c76..f844757 100644 --- a/client/src/components/simple-carousel.tsx +++ b/client/src/components/simple-carousel.tsx @@ -29,7 +29,7 @@ export default function SimpleCarousel({ category, onVideoClick }: SimpleCarouse clearInterval(scrollIntervalRef.current); } - const speedValue = newSpeed === 'fast' ? 1.2 : 0.6; + const speedValue = newSpeed === 'fast' ? 2.5 : 0.8; scrollIntervalRef.current = setInterval(() => { if (!scrollContainerRef.current) return; @@ -54,7 +54,7 @@ export default function SimpleCarousel({ category, onVideoClick }: SimpleCarouse setCurrentDirection(direction); setSpeed('normal'); // Reset to normal speed when starting - const speedValue = 0.6; // Always start with normal speed + const speedValue = 0.8; // Always start with normal speed scrollIntervalRef.current = setInterval(() => { if (!scrollContainerRef.current) return;