refactors: animations cleanup

This commit is contained in:
zhom
2026-07-16 23:56:59 +04:00
parent cef522649a
commit e1c9ce6525
14 changed files with 1070 additions and 645 deletions
+10
View File
@@ -0,0 +1,10 @@
export const MOTION_EASE_OUT: [number, number, number, number] = [
0.23, 1, 0.32, 1,
];
export const MOTION_SPRING_POSITION = {
type: "spring" as const,
stiffness: 500,
damping: 30,
mass: 0.5,
};