Skip to content

Commit 6362201

Browse files
committed
slowdown
1 parent c7d9a3a commit 6362201

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/SponsorBanner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default function SponsorBanner() {
2828
const numUniqueLogos = initialLogos.length;
2929
// Example: Make it scroll faster if there are fewer logos, slower if more.
3030
// This is a very rough estimation, you might need to fine-tune.
31-
const estimatedDuration = numUniqueLogos * 3 * 1.7; // seconds per unique logo, now 50% slower
31+
const estimatedDuration = numUniqueLogos * 3 * 3; // seconds per unique logo, now 50% slower
3232
setAnimationDuration(`${Math.max(20, estimatedDuration)}s`); // Ensure a minimum duration
3333
}
3434
}, [initialLogos.length]);

0 commit comments

Comments
 (0)