fix(landing): slow hero message rotation from 3s to 5s

This commit is contained in:
SnapOtter
2026-06-08 13:27:08 +08:00
parent 25e7c79982
commit acee5a6651
@@ -29,7 +29,7 @@ export function TypingCursor() {
}, []);
useEffect(() => {
const timer = setInterval(advance, 3000);
const timer = setInterval(advance, 5000);
return () => clearInterval(timer);
}, [advance]);