feat: page opening and phone country dropdown animations

This commit is contained in:
2025-07-24 13:14:35 +04:00
parent 84f7869a37
commit 7697cbbb86
5 changed files with 64 additions and 1 deletions

View File

@ -0,0 +1,12 @@
'use client';
import { motion, MotionProps } from 'framer-motion';
import { ReactNode } from 'react';
interface MotionWrapperProps extends MotionProps {
children: ReactNode;
}
export function MotionWrapper({ children, ...props }: MotionWrapperProps) {
return <motion.div {...props}>{children}</motion.div>;
}