This commit is contained in:
g
2026-01-12 02:42:44 +00:00
parent 624bfa5485
commit 02ba4b0e66
7 changed files with 182 additions and 86 deletions

View File

@@ -0,0 +1,15 @@
"use client";
import { motion } from "framer-motion";
export function MotionWrapper({ children }: { children: React.ReactNode }) {
return (
<motion.div
initial={{ opacity: 0, y: 20 }}
animate={{ opacity: 1, y: 0 }}
transition={{ duration: 0.5, staggerChildren: 0.1 }}
>
{children}
</motion.div>
);
}