Refactor site configuration to utilize centralized settings for analytics and base path; replace PocketBase imports with new data module

This commit is contained in:
Bram Suurd 2024-11-06 21:22:44 +01:00
parent 860186e4fa
commit b6ab3dd37d

View File

@ -1,3 +1,4 @@
import { basePath } from "@/config/siteConfig";
import type { MetadataRoute } from "next";
export const generateStaticParams = () => {
@ -9,13 +10,13 @@ export default function manifest(): MetadataRoute.Manifest {
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.",
"A Re-designed Front-end for the Proxmox VE Helper-Scripts Repository. Featuring over 200+ scripts to help you manage your Proxmox VE environment.",
theme_color: "#030712",
background_color: "#030712",
display: "standalone",
orientation: "portrait",
scope: "/Proxmox/",
start_url: "/Proxmox/",
scope: `${basePath}`,
start_url: `${basePath}`,
icons: [
{
src: "logo.png",