From 45a727566741f2ae89608f0240dd6d4a66b35ac2 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Tue, 18 Feb 2025 19:09:28 +0100 Subject: [PATCH] Update --- web/app/layout.tsx | 4 ++++ web/app/page.tsx | 23 ++++++++++++++++++++++- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/web/app/layout.tsx b/web/app/layout.tsx index 454219c..52ce921 100644 --- a/web/app/layout.tsx +++ b/web/app/layout.tsx @@ -41,6 +41,10 @@ const description = locale: "en_US", type: "website", }, + icons: { + shortcut: "/favicon.ico", + apple: "/apple-touch-icon.png", + }, } export default function RootLayout({ diff --git a/web/app/page.tsx b/web/app/page.tsx index e1db1a4..4a06c3d 100644 --- a/web/app/page.tsx +++ b/web/app/page.tsx @@ -1,10 +1,32 @@ import dynamic from "next/dynamic" +import { Metadata } from "next" const Hero = dynamic(() => import("@/components/hero"), { ssr: false }) const Resources = dynamic(() => import("@/components/resources"), { ssr: false }) const SupportProject = dynamic(() => import("@/components/support-project"), { ssr: false }) const Footer = dynamic(() => import("@/components/footer"), { ssr: false }) + +export const metadata: Metadata = { + title: "ProxMenux", + description: + "A menu-driven script for Proxmox VE management, designed to facilitate productivity, it simplifies automation and streamlines task execution.", + openGraph: { + title: "ProxMenux", + description: + "A menu-driven script for Proxmox VE management, designed to facilitate productivity, it simplifies automation and streamlines task execution.", + url: "https://macrimi.github.io/", + siteName: "ProxMenux", + images: [ + { + url: "https://macrimi.github.io/ProxMenux/main.png", + }, + ], + locale: "en_US", + type: "website", + }, +} + export default function Home() { return (
@@ -15,4 +37,3 @@ export default function Home() {
) } -