diff --git a/app/[locale]/layout.tsx b/app/[locale]/layout.tsx
index b700fed50..48f588632 100644
--- a/app/[locale]/layout.tsx
+++ b/app/[locale]/layout.tsx
@@ -22,7 +22,6 @@ import { DynamicMobileBottomNav as MobileBottomNav } from '@/components/layout/D
import { DynamicCorporateBackground as CorporateBackground } from '@/components/decorations/DynamicCorporateBackground';
import { DynamicPageTransitionShutter as PageTransitionShutter } from '@/components/providers/DynamicPageTransitionShutter';
-import { DynamicFramerMotion as FramerMotionProvider } from '@/components/providers/DynamicFramerMotion';
const inter = Inter({
subsets: ['latin'],
@@ -191,28 +190,26 @@ export default async function Layout(props: {
-
-
-
-
-
-
-
-
-
- {children}
-
+
+
+
+
+
+
+
+
+ {children}
+
-
-
-
+
+
+
-
-
+
diff --git a/components/providers/DynamicFramerMotion.tsx b/components/providers/DynamicFramerMotion.tsx
deleted file mode 100644
index 4f8c0ed6f..000000000
--- a/components/providers/DynamicFramerMotion.tsx
+++ /dev/null
@@ -1,7 +0,0 @@
-'use client';
-import dynamic from 'next/dynamic';
-
-export const DynamicFramerMotion = dynamic(
- () => import('./FramerMotionProvider').then((mod) => mod.FramerMotionProvider),
- { ssr: true }
-);
diff --git a/components/providers/FramerMotionProvider.tsx b/components/providers/FramerMotionProvider.tsx
deleted file mode 100644
index c556d9c1c..000000000
--- a/components/providers/FramerMotionProvider.tsx
+++ /dev/null
@@ -1,11 +0,0 @@
-'use client';
-import { LazyMotion } from 'framer-motion';
-const loadFeatures = () => import('@/lib/framer-features').then(res => res.default);
-
-export function FramerMotionProvider({ children }: { children: React.ReactNode }) {
- return (
-
- {children}
-
- );
-}
diff --git a/components/providers/TransitionProvider.tsx b/components/providers/TransitionProvider.tsx
index 6d27cdd17..31e41703d 100644
--- a/components/providers/TransitionProvider.tsx
+++ b/components/providers/TransitionProvider.tsx
@@ -2,6 +2,9 @@
import React, { createContext, useContext, useState, useCallback, ReactNode, useEffect } from 'react';
import { useRouter, usePathname, useSearchParams } from 'next/navigation';
+import { LazyMotion } from 'framer-motion';
+
+const loadFeatures = () => import('@/lib/framer-features').then(res => res.default);
interface TransitionContextType {
isTransitioning: boolean;
@@ -68,7 +71,9 @@ export function TransitionProvider({ children }: { children: ReactNode }) {
setTransitionMessage={setTransitionMessage}
/>
- {children}
+
+ {children}
+
);
}