import type { MetadataRoute } from "next";

export default function manifest(): MetadataRoute.Manifest {
  return {
    name: "PureSaaS",
    short_name: "PureSaaS",
    description: "All-in-one platform for real estate, builders, and housing societies.",
    start_url: "/en",
    display: "standalone",
    background_color: "#fbfdff",
    theme_color: "#5865ee",
    icons: [
      {
        src: "/favicon-16x16.png",
        sizes: "16x16",
        type: "image/png",
      },
      {
        src: "/favicon-32x32.png",
        sizes: "32x32",
        type: "image/png",
      },
      {
        src: "/apple-touch-icon.png",
        sizes: "180x180",
        type: "image/png",
      },
    ],
  };
}
