35 lines
786 B
TypeScript
35 lines
786 B
TypeScript
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.",
|
|
id: "/",
|
|
start_url: "/",
|
|
scope: "/",
|
|
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"
|
|
}
|
|
]
|
|
};
|
|
}
|