diff --git a/app/template.tsx b/app/template.tsx new file mode 100644 index 0000000..b4dfc7a --- /dev/null +++ b/app/template.tsx @@ -0,0 +1,15 @@ +"use client"; + +import { motion } from "motion/react"; + +export default function Template({ children }: { children: React.ReactNode }) { + return ( + + {children} + + ); +}