import { motion } from 'framer-motion'; export default function Layout({ children, pageProps }) { const variants = { hidden: { opacity: 0, x: -75, y: 0 }, enter: { opacity: 1, x: 0, y: 0 }, exit: { opacity: 0, x: 0, y: -50 }, }; const transition = { ease: 'linear', duration: 0.4 }; return children && ( {children} ); }