From 0ba15074af2c0ac2edb5c6a69ac9b6893416e8ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nedim=20Arabac=C4=B1?= Date: Thu, 3 Oct 2024 00:14:11 +0300 Subject: [PATCH] Update duration in HyperText component --- src/components/ui/hyper-text.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ui/hyper-text.tsx b/src/components/ui/hyper-text.tsx index 2b63814..5688049 100644 --- a/src/components/ui/hyper-text.tsx +++ b/src/components/ui/hyper-text.tsx @@ -19,7 +19,7 @@ const getRandomInt = (max: number) => Math.floor(Math.random() * max); export default function HyperText({ text, - duration = 100, + duration = 1000, framerProps = { initial: { opacity: 0, y: -10 }, animate: { opacity: 1, y: 0 },