import { motion } from 'framer-motion'; export default function Layout({ children, ...pageProps }) { const transition = { ease: 'easeOut', duration: 0.2 }; return children && ( {children} ); }