diff --git a/src/app/manifest.ts b/src/app/manifest.ts new file mode 100644 index 0000000..d8cd278 --- /dev/null +++ b/src/app/manifest.ts @@ -0,0 +1,23 @@ +import type { MetadataRoute } from "next"; + +export default function manifest(): MetadataRoute.Manifest { + return { + name: "Proxmox VE Helper-Scripts", + short_name: "Proxmox VE Helper-Scripts", + description: + "A Re-designed Front-end for the Proxmox VE Helper-Scripts Repository. Featuring over 150+ scripts to help you manage your Proxmox VE environment.", + theme_color: "#030712", + background_color: "#030712", + display: "standalone", + orientation: "portrait", + scope: "/", + start_url: "/", + icons: [ + { + src: "/logo.png", + sizes: "512x512", + type: "image/png", + }, + ], + }; +} \ No newline at end of file