diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9cbfab6..968c27d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -2,6 +2,8 @@ import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "@/styles/globals.css"; import { cn } from "@/lib/utils"; +import ClientLayout from "@/components/layout/ClientLayout"; +import { NetworkProgressProvider } from "@/components/ui/network-progress"; const inter = Inter({ subsets: ["latin"] }); @@ -53,9 +55,6 @@ export const metadata: Metadata = { }, }; -// Composant client séparé pour le layout -import ClientLayout from "@/components/layout/ClientLayout"; - export default function RootLayout({ children }: { children: React.ReactNode }) { return ( @@ -115,7 +114,9 @@ export default function RootLayout({ children }: { children: React.ReactNode }) />
-