diff --git a/app/layout.tsx b/app/layout.tsx index 94a2dd3..8d6fa24 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -3,6 +3,7 @@ import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; import Header from "@/layouts/header"; import Footer from "@/layouts/footer"; +import { Providers } from "./providers"; const geistSans = Geist({ variable: "--font-geist-sans", @@ -43,16 +44,18 @@ export default function RootLayout({ - {/* Sticky top header */} -
+ + {/* Sticky top header */} +
- {/* Page content (grows to fill remaining height) */} -
- {children} -
+ {/* Page content (grows to fill remaining height) */} +
+ {children} +
- {/* Footer always at bottom */} -