diff --git a/remix/app/components/textAnimation1.tsx b/remix/app/components/textAnimation1.tsx index 031400d..7f65594 100644 --- a/remix/app/components/textAnimation1.tsx +++ b/remix/app/components/textAnimation1.tsx @@ -28,7 +28,7 @@ export const TextAnimation1 = props => { const newTextIdx = texts?.indexOf(titleText) + 1 const newText = texts[newTextIdx] || texts[0] setTitleText(newText) - }, 5000) + }, 4000) return () => clearInterval(interval) }, [titleText, texts])