'use client' import React from 'react' import PageLayout from '@/components/PageLayout' <§animations§>import { AnimatePresence } from 'framer-motion' import { CssBaseline, ThemeProvider } from '@mui/material' import { theme } from '@/app/theme' export default function ClientProviders({ children }: { children: React.ReactNode }) { return ( <§animations§> {children} <§animations§> ) }