import type { MetadataRoute } from "next" export default function manifest(): MetadataRoute.Manifest { return { name: "Property Management Network", short_name: "PMN", description: "Manage rental properties, tenants, rent, maintenance, and leases from one dashboard.", start_url: "/", display: "standalone", background_color: "#09090b", theme_color: "#09090b", icons: [ { src: "/icon-192.png", type: "image/png", sizes: "192x192", purpose: "any", }, { src: "/icon-512.png", type: "image/png", sizes: "512x512", purpose: "any", }, { src: "/icon-maskable-512.png", type: "image/png", sizes: "512x512", purpose: "maskable", }, ], } }