diff --git a/web/app/layout.tsx b/web/app/layout.tsx index 488b22b5..4a63cc2f 100644 --- a/web/app/layout.tsx +++ b/web/app/layout.tsx @@ -15,6 +15,20 @@ export const metadata: Metadata = { description: "Organize world's knowledge, explore connections and curate learning paths" } +const Providers = ({ children }: { children: React.ReactNode }) => ( + + + + + + {children} + + + + + +) + export default function RootLayout({ children }: Readonly<{ @@ -22,20 +36,12 @@ export default function RootLayout({ }>) { return ( - - - - - - - {children} - - - - - - - + + + {children} + + + ) }