fix(theme): Resolve Framer Motion easing TS error
Some checks are pending
Deploy to Production / deploy (push) Waiting to run
Test / frontend-test (push) Waiting to run
Test / backend-test (push) Waiting to run

This commit is contained in:
fullsizemalt 2025-12-19 19:03:39 -08:00
parent 4fd7aed250
commit a7e0fa5579

View file

@ -9,8 +9,8 @@ export const pageVariants = {
y: 0, y: 0,
scale: 1, scale: 1,
transition: { transition: {
duration: 0.4, duration: 0.5,
ease: [0.16, 1, 0.3, 1], // expo out ease: "easeOut",
staggerChildren: 0.1, staggerChildren: 0.1,
}, },
}, },
@ -19,7 +19,7 @@ export const pageVariants = {
y: -8, y: -8,
transition: { transition: {
duration: 0.2, duration: 0.2,
ease: [0.7, 0, 0.84, 0], // ease in ease: "easeIn",
}, },
}, },
}; };
@ -30,8 +30,8 @@ export const itemVariants = {
opacity: 1, opacity: 1,
y: 0, y: 0,
transition: { transition: {
duration: 0.3, duration: 0.4,
ease: [0.16, 1, 0.3, 1], ease: "easeOut",
}, },
}, },
}; };