import type { MetadataRoute } from "next";

export default function manifest(): MetadataRoute.Manifest {
  return {
    name: "RxSathi",
    short_name: "RxSathi",
    description: "RxSathi System",
    start_url: "/",
    display: "standalone",
    background_color: "#ffffff",
    theme_color: "#2563eb",
    icons: [
      {
        src: "/icon1.png",
        sizes: "192x192",
        type: "image/png",
      },
    ],
  };
}