From a7e0fa557991691495c8cb66878daafec75c4faf Mon Sep 17 00:00:00 2001 From: fullsizemalt <106900403+fullsizemalt@users.noreply.github.com> Date: Fri, 19 Dec 2025 19:03:39 -0800 Subject: [PATCH] fix(theme): Resolve Framer Motion easing TS error --- frontend/src/lib/animations.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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", }, }, };