From a6f3333fcb95111b4b693518e804e17e84e3e3dc Mon Sep 17 00:00:00 2001 From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com> Date: Sat, 14 Sep 2024 19:46:13 +0200 Subject: [PATCH] feat: add manifest file for Proxmox VE Helper-Scripts with app metadata and icons configuration --- src/app/manifest.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/app/manifest.ts 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