import type { MetadataRoute } from "next"; // §16 NFR: installable PWA. Icons are generated at build time into // /public/icons (script: npm run icons). export default function manifest(): MetadataRoute.Manifest { return { name: "Clawmates", short_name: "Clawmates", description: "Deploy agents at any scale — a single agent to a whole org.", start_url: "/", display: "standalone", background_color: "#08080a", theme_color: "#ff6f61", icons: [ { src: "/icons/icon-192.png", sizes: "192x192", type: "image/png" }, { src: "/icons/icon-512.png", sizes: "512x512", type: "image/png", purpose: "maskable", }, ], }; }