From c79fd484799e37c364b7e5c28da1254582335d5e Mon Sep 17 00:00:00 2001 From: Krishna Ayyalasomayajula Date: Mon, 1 Jun 2026 19:41:03 -0500 Subject: [PATCH] feat: add page transition wrapper --- app/template.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 app/template.tsx 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} + + ); +}