'use client' import { PropsWithChildren } from 'react' import { ThemeProvider } from 'next-themes' import { motion as m } from 'framer-motion' export default function ThemeWrapper({ children }: PropsWithChildren) { return ( {children} ) }