From 3d29740857a79e33b32b662e9441365daafd522e Mon Sep 17 00:00:00 2001 From: MacRimi <123239993+MacRimi@users.noreply.github.com> Date: Thu, 13 Feb 2025 22:13:38 +0100 Subject: [PATCH] Update layout.tsx --- web/app/layout.tsx | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) 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 (
-