import type { MetadataRoute } from "next"; export default function manifest(): MetadataRoute.Manifest { return { name: "WebSensor — Real-time Internet change intelligence", short_name: "WebSensor", description: "The Web is changing. We are watching. Detect what changed, know why it matters.", start_url: "/", display: "standalone", background_color: "#0a0e15", theme_color: "#0a0e15", icons: [ { src: "/icon.svg", sizes: "any", type: "image/svg+xml", purpose: "any" }, { src: "/icons/icon-192.png", sizes: "192x192", type: "image/png", purpose: "any" }, { src: "/icons/icon-512.png", sizes: "512x512", type: "image/png", purpose: "any" }, { src: "/icons/icon-512-maskable.png", sizes: "512x512", type: "image/png", purpose: "maskable" }, ], }; }