From 45e3853032bfee73ad5ae950afd8253e21ad8952 Mon Sep 17 00:00:00 2001 From: MacRimi <123239993+MacRimi@users.noreply.github.com> Date: Fri, 14 Feb 2025 11:29:58 +0100 Subject: [PATCH] Update layout.tsx --- web/app/layout.tsx | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/web/app/layout.tsx b/web/app/layout.tsx index 2d6a68b..e423004 100644 --- a/web/app/layout.tsx +++ b/web/app/layout.tsx @@ -1,19 +1,13 @@ +"use client" + import "./globals.css" import { Inter } from "next/font/google" -import type React from "react" -import type { Metadata } from "next" import Navbar from "@/components/navbar" import MouseMoveEffect from "@/components/mouse-move-effect" +import type React from "react" // Added import for React const inter = Inter({ subsets: ["latin"] }) -export const metadata: Metadata = { - title: "ProxMenux - A menu-driven script for Proxmox VE management", - description: - "ProxMenux is a tool designed to execute shell scripts in an organized manner for Proxmox VE management.", - generator: 'v0.dev' -} - export default function RootLayout({ children, }: { @@ -30,6 +24,3 @@ export default function RootLayout({ ) } - - -import './globals.css' \ No newline at end of file