From 737851c409f02e22e8a81893491b7eb56b37d24e Mon Sep 17 00:00:00 2001 From: MacRimi <123239993+MacRimi@users.noreply.github.com> Date: Tue, 18 Feb 2025 23:29:19 +0100 Subject: [PATCH] Update hero.tsx --- web/components/hero.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/web/components/hero.tsx b/web/components/hero.tsx index 86719fa..f7c4f9f 100644 --- a/web/components/hero.tsx +++ b/web/components/hero.tsx @@ -1,9 +1,24 @@ "use client" +import type { Metadata } from "next" import { Button } from "@/components/ui/button" import { ArrowRight } from "lucide-react" import Link from "next/link" +export const metadata: Metadata = { + title: "ProxMenux", + description: + "A menu-driven script for Proxmox VE management, designed to simplify and streamline the execution of commands and tasks.", + siteName: "ProxMenux", + images: [ + { + url: `https://raw.githubusercontent.com/MacRimi/ProxMenux/main/web/public/main.png`, + width: 1363, + height: 735, + }, + ], +} + export default function Hero() { return (