Heb er een PWA van gemaakt en layout gecorrigeerd

This commit is contained in:
LogJurgenR
2026-08-19 16:46:29 +02:00
parent d3cab99d86
commit 686339325e
21 changed files with 1629 additions and 103 deletions
+22
View File
@@ -0,0 +1,22 @@
import type { MetadataRoute } from "next";
export default function manifest(): MetadataRoute.Manifest {
return {
name: "CF Demop App",
short_name: "CF Demop App",
description: "Bekijk artikelen uit SAP Business One.",
start_url: "/",
display: "standalone",
background_color: "#f8fafc",
theme_color: "#0e7490",
lang: "nl",
icons: [
{
src: "/icon.svg",
sizes: "any",
type: "image/svg+xml",
purpose: "maskable",
},
],
};
}