23 lines
549 B
TypeScript
23 lines
549 B
TypeScript
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: "/logo-mark.png",
|
||
|
|
type: "image/png",
|
||
|
|
sizes: "100x100",
|
||
|
|
purpose: "any",
|
||
|
|
},
|
||
|
|
],
|
||
|
|
}
|
||
|
|
}
|