From 0a6df0b3ee58069632d4834af1a5ead853162dd0 Mon Sep 17 00:00:00 2001 From: Krishna Ayyalasomayajula Date: Mon, 1 Jun 2026 19:39:22 -0500 Subject: [PATCH] feat: add motion provider (no theme provider here) --- app/providers.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 app/providers.tsx 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} + + + ); +}