Initial commit

This commit is contained in:
Jan
2026-04-08 16:30:44 +02:00
commit f9b17e9964
65 changed files with 7574 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
import type { MetadataRoute } from "next";
export default function manifest(): MetadataRoute.Manifest {
return {
name: "RFP Finanz\u00fcbersicht",
short_name: "RFP Finanzen",
description: "Budgetfreigaben und Finanzstatus f\u00fcr Vereins-AGs.",
start_url: "/",
display: "standalone",
background_color: "#F5F1E8",
theme_color: "#3B5AE0",
icons: [
{
src: "/icon-192.png",
sizes: "192x192",
type: "image/png",
purpose: "maskable"
},
{
src: "/icon-512.png",
sizes: "512x512",
type: "image/png",
purpose: "maskable"
},
{
src: "/apple-touch-icon.png",
sizes: "180x180",
type: "image/png"
}
]
};
}