2026-07-02 13:42:34 -04:00
|
|
|
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: [
|
|
|
|
|
{
|
2026-07-03 04:45:24 -04:00
|
|
|
src: "/icon-192.png",
|
2026-07-02 13:42:34 -04:00
|
|
|
type: "image/png",
|
2026-07-03 04:45:24 -04:00
|
|
|
sizes: "192x192",
|
2026-07-02 13:42:34 -04:00
|
|
|
purpose: "any",
|
|
|
|
|
},
|
2026-07-03 04:45:24 -04:00
|
|
|
{
|
|
|
|
|
src: "/icon-512.png",
|
|
|
|
|
type: "image/png",
|
|
|
|
|
sizes: "512x512",
|
|
|
|
|
purpose: "any",
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
src: "/icon-maskable-512.png",
|
|
|
|
|
type: "image/png",
|
|
|
|
|
sizes: "512x512",
|
|
|
|
|
purpose: "maskable",
|
|
|
|
|
},
|
2026-07-02 13:42:34 -04:00
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
}
|