import type { MetadataRoute } from "next";

export default function manifest(): MetadataRoute.Manifest {
  return {
    name: "SelahBeat",
    short_name: "SelahBeat",
    description:
      "Música cristã contemporânea. Verdades eternas no som do presente.",
    start_url: "/",
    display: "standalone",
    background_color: "#070604",
    theme_color: "#070604",
    icons: [
      {
        src: "/icon-192.png",
        sizes: "192x192",
        type: "image/png",
      },
      {
        src: "/icon-512.png",
        sizes: "512x512",
        type: "image/png",
      },
    ],
  };
}
