import type { MetadataRoute } from "next";

export default function manifest(): MetadataRoute.Manifest {
  return {
    name: "Rajvi Social Welfare Trust",
    short_name: "Rajvi Welfare",

    description:
      "Rajvi Social Welfare Trust empowers communities through education support, healthcare awareness, women empowerment, youth development, environmental awareness and community welfare initiatives across India.",

    start_url: "/",
    scope: "/",

    display: "standalone",

    background_color: "#ffffff",
    theme_color: "#fbbf24",

    orientation: "portrait",

    icons: [
      {
        src: "/favicon.ico",
        sizes: "any",
        type: "image/x-icon",
      },

      {
        src: "/logo.webp",
        sizes: "512x512",
        type: "image/webp",
      },
    ],
  };
}