diff --git a/frontend/src/lib/animations.ts b/frontend/src/lib/animations.ts index 75c33cd..e607552 100644 --- a/frontend/src/lib/animations.ts +++ b/frontend/src/lib/animations.ts @@ -9,8 +9,8 @@ export const pageVariants = { y: 0, scale: 1, transition: { - duration: 0.4, - ease: [0.16, 1, 0.3, 1], // expo out + duration: 0.5, + ease: "easeOut", staggerChildren: 0.1, }, }, @@ -19,7 +19,7 @@ export const pageVariants = { y: -8, transition: { duration: 0.2, - ease: [0.7, 0, 0.84, 0], // ease in + ease: "easeIn", }, }, }; @@ -30,8 +30,8 @@ export const itemVariants = { opacity: 1, y: 0, transition: { - duration: 0.3, - ease: [0.16, 1, 0.3, 1], + duration: 0.4, + ease: "easeOut", }, }, };