diff --git a/app/(route)/(index)/layout.tsx b/app/(route)/(index)/layout.tsx
index 9020ad3..143c4d3 100644
--- a/app/(route)/(index)/layout.tsx
+++ b/app/(route)/(index)/layout.tsx
@@ -1,15 +1,18 @@
+import { UserContextProvider } from '@/app/_components/providers/UserProvider'
import BottomNavigation from '@/app/_components/shared/bottom-navigation'
import Header from '@/app/_components/shared/header'
export default function Layout({ children }: { children: React.ReactNode }) {
return (
-
-
- {children}
-
-
+
+
+
+ {children}
+
+
+
)
}