import "./globals.css" import { Inter } from "next/font/google" import Navbar from "@/components/navbar" import MouseMoveEffect from "@/components/mouse-move-effect" import type React from "react" const inter = Inter({ subsets: ["latin"] }) export const metadata = { title: "ProxMenux - Menu-Driven Script for Proxmox VE Management", generator: "Next.js", applicationName: "ProxMenux", referrer: "origin-when-cross-origin", keywords: [ "Proxmox VE", "Proxmox", "PVE", "ProxMenux", "MacRimi", "menu-driven", "menu script", "scripts", "virtualization", "automation", "server management", "VM management", "container management", "LXC", ], authors: [{ name: "MacRimi", url: "https://github.com/MacRimi" }], creator: "MacRimi", publisher: "MacRimi", description: "ProxMenux is a powerful menu-driven script for Proxmox VE management, designed to simplify and streamline the execution of commands and tasks. Manage VMs, containers, networking, storage, and more with an intuitive interface.", formatDetection: { email: false, address: false, telephone: false, }, metadataBase: new URL("https://proxmenux.com"), alternates: { canonical: "https://proxmenux.com", }, openGraph: { title: "ProxMenux - Menu-Driven Script for Proxmox VE Management", description: "ProxMenux is a powerful menu-driven script for Proxmox VE management, designed to simplify and streamline the execution of commands and tasks. Manage VMs, containers, networking, storage, and more.", url: "https://proxmenux.com", siteName: "ProxMenux", images: [ { url: "https://proxmenux.com/main.png", width: 1363, height: 735, alt: "ProxMenux - Proxmox VE Management Interface", }, ], locale: "en_US", type: "website", }, twitter: { card: "summary_large_image", title: "ProxMenux - Menu-Driven Script for Proxmox VE", description: "Powerful menu-driven script for Proxmox VE management. Simplify VM, container, networking, and storage management with an intuitive interface.", images: ["https://proxmenux.com/main.png"], creator: "@MacRimi", }, robots: { index: true, follow: true, googleBot: { index: true, follow: true, "max-video-preview": -1, "max-image-preview": "large", "max-snippet": -1, }, }, icons: { icon: [ { url: "/favicon.ico", sizes: "any" }, { url: "/icon.svg", type: "image/svg+xml" }, ], apple: [{ url: "/apple-touch-icon.png", sizes: "180x180" }], }, } export default function RootLayout({ children }: { children: React.ReactNode }) { return (