diff --git a/app/providers.tsx b/app/providers.tsx new file mode 100644 index 0000000..5a85ac8 --- /dev/null +++ b/app/providers.tsx @@ -0,0 +1,16 @@ +"use client"; + +import { LazyMotion, domAnimation, MotionConfig } from "motion/react"; + +export function Providers({ children }: { children: React.ReactNode }) { + return ( + + + {children} + + + ); +}