feat: add manifest file for Proxmox VE Helper-Scripts with app metadata and icons configuration

This commit is contained in:
Bram Suurd
2024-09-14 19:46:13 +02:00
parent a82c27a1de
commit a6f3333fcb

23
src/app/manifest.ts Normal file
View File

@@ -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",
},
],
};
}