import { NextResponse } from "next/server";

export function GET() {
  return NextResponse.json(
    {
      name: "LocaJour",
      short_name: "LocaJour",
      description: "Private property management system",
      start_url: "/dashboard",
      display: "standalone",
      background_color: "#faf9f7",
      theme_color: "#16786a",
      icons: [{ src: "/icon.svg", sizes: "any", type: "image/svg+xml", purpose: "any maskable" }],
    },
    { headers: { "Content-Type": "application/manifest+json" } }
  );
}
