ProxMenux/web/app/metadata.ts

54 lines
1.6 KiB
TypeScript
Raw Normal View History

2025-02-18 20:00:51 +01:00
import type { Metadata } from 'next'
2025-02-18 20:46:08 +01:00
2025-02-18 20:00:51 +01:00
2025-02-18 21:22:26 +01:00
const description = "A menu-driven script for Proxmox VE management, designed to simplify and streamline the execution of commands and tasks."
2025-02-18 20:00:51 +01:00
export const metadata: Metadata = {
title: {
default: "ProxMenux",
template: "%s | ProxMenux",
},
description,
generator: "Next.js",
applicationName: "ProxMenux",
referrer: "origin-when-cross-origin",
keywords: ["Proxmox VE", "VE", "ProxMenux", "MacRimi", "menu-driven", "menu", "scripts", "virtualization"],
authors: [{ name: "MacRimi" }],
creator: "MacRimi",
publisher: "MacRimi",
formatDetection: {
email: false,
address: false,
telephone: false,
},
2025-02-18 20:46:08 +01:00
metadataBase: new URL(`https://macrimi.github.io/ProxMenux/`),
2025-02-18 20:00:51 +01:00
openGraph: {
title: "ProxMenux",
description,
2025-02-18 20:46:08 +01:00
url: `https://macrimi.github.io/ProxMenux/`,
2025-02-18 20:00:51 +01:00
siteName: "ProxMenux",
images: [
{
2025-02-18 20:46:08 +01:00
url: `https://raw.githubusercontent.com/MacRimi/ProxMenux/main/web/public/main.png`,
2025-02-18 20:00:51 +01:00
width: 1363,
height: 735,
},
],
locale: "en_US",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "ProxMenux",
description,
2025-02-18 20:46:08 +01:00
images: [`https://raw.githubusercontent.com/MacRimi/ProxMenux/main/web/public/main.png`],
2025-02-18 20:00:51 +01:00
},
icons: {
icon: [
2025-02-18 20:46:08 +01:00
{ url: "https://raw.githubusercontent.com/MacRimi/ProxMenux/main/web/public/favicon.ico", sizes: "any" },
{ url: "https://raw.githubusercontent.com/MacRimi/ProxMenux/main/web/public/icon.svg", type: "image/svg+xml" },
2025-02-18 20:00:51 +01:00
],
2025-02-18 20:46:08 +01:00
apple: [{ url: "https://raw.githubusercontent.com/MacRimi/ProxMenux/main/web/public//apple-touch-icon.png" }],
2025-02-18 20:00:51 +01:00
},
}