All checks were successful
Build & Deploy / 🔍 Prepare (push) Successful in 39s
Build & Deploy / 🧪 QA (push) Successful in 1m44s
Build & Deploy / 🏗️ Build (push) Successful in 3m23s
Build & Deploy / 🚀 Deploy (push) Successful in 47s
Build & Deploy / 🧪 Post-Deploy Verification (push) Successful in 1m2s
Build & Deploy / 🔔 Notify (push) Successful in 2s
20 lines
448 B
TypeScript
20 lines
448 B
TypeScript
'use client';
|
|
|
|
import { motion } from 'framer-motion';
|
|
|
|
export default function Template({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<motion.div
|
|
initial={{ opacity: 0, y: 20, filter: 'blur(10px)' }}
|
|
animate={{ opacity: 1, y: 0, filter: 'blur(0px)' }}
|
|
transition={{
|
|
duration: 0.7,
|
|
ease: [0.16, 1, 0.3, 1],
|
|
}}
|
|
className="w-full h-full"
|
|
>
|
|
{children}
|
|
</motion.div>
|
|
);
|
|
}
|