import { Inter } from "next/font/google"; import "./globals.css"; import { ThemeProvider } from "@/components/theme-provider"; import { Toaster } from "@/components/ui/sonner"; import Navbar from "@/components/Navbar"; import React from "react"; import { InfoToastWithButton, WarningToast } from "@/components/WarningToast"; const inter = Inter({ subsets: ["latin"] }); export const metadata = { title: "Proxmox VE Helper-Scripts", generator: "Next.js", applicationName: "Proxmox VE Helper-Scripts", referrer: "origin-when-cross-origin", keywords: [ "Proxmox VE", "Helper-Scripts", "tteck", "helper", "scripts", "proxmox", "VE", ], authors: { name: "Bram Suurd" }, creator: "Bram Suurd", publisher: "Bram Suurd", description: "A Re-designed Front-end for the Proxmox VE Helper-Scripts Repository. Featuring all the scripts you need to streamline your homelab. With a modern and clean design.", favicon: "/app/favicon.ico", formatDetection: { email: false, address: false, telephone: false, }, metadataBase: new URL("https://proxmox-helper-scripts.vercel.app/"), openGraph: { title: "Proxmox VE Helper-Scripts", description: "A Re-designed Front-end for the Proxmox VE Helper-Scripts Repository. Featuring all the scripts you need to streamline your homelab. With a modern and clean design.", url: "/defaultimg.png", images: [ { url: "https://proxmox-helper-scripts.vercel.app/defaultimg.png", }, ], locale: "en_US", type: "website", }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (