diff --git a/web/app/layout.tsx b/web/app/layout.tsx index d0736a5..7ed42a6 100644 --- a/web/app/layout.tsx +++ b/web/app/layout.tsx @@ -1,7 +1,7 @@ import "./globals.css" import { Inter } from "next/font/google" import type { Metadata } from "next" -import ClientLayout from "@/components/ClientLayout" // ✅ Import ClientLayout (Recommended) +import ClientLayout from "@/components/ClientLayout" const inter = Inter({ subsets: ["latin"] }) @@ -12,18 +12,13 @@ export const metadata: Metadata = { generator: "v0.dev", } -export default function RootLayout({ - children, -}: { - children: React.ReactNode -}) { +export default function RootLayout({ children }: { children: React.ReactNode }) { return (
-