diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index e4c9ea5..4b32f85 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -4,7 +4,6 @@ import "./globals.css";
import { ThemeProvider } from "@/components/theme-provider";
import { Toaster } from "@/components/ui/sonner";
import { Footer } from "@/components/footer";
-import { PageTransitionProvider } from "@/components/page-transition-provider";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -41,9 +40,7 @@ export default function RootLayout({
enableSystem
disableTransitionOnChange
>
-
- {children}
-
+ {children}
diff --git a/src/components/page-transition-provider.tsx b/src/components/page-transition-provider.tsx
deleted file mode 100644
index dd83819..0000000
--- a/src/components/page-transition-provider.tsx
+++ /dev/null
@@ -1,34 +0,0 @@
-"use client";
-
-import { AnimatePresence, motion } from "framer-motion";
-import { usePathname } from "next/navigation";
-import React from "react";
-
-export function PageTransitionProvider({ children }: { children: React.ReactNode }) {
- const pathname = usePathname();
-
- return (
-
-
- {children}
-
- {/* Exit Animation Overlay */}
-
-
- {/* Enter Animation Overlay */}
-
-
-
- );
-}
\ No newline at end of file