import type { MetadataRoute } from "next"; export default function manifest(): MetadataRoute.Manifest { return { id: "/", name: "Pi Web", short_name: "Pi Web", description: "Local web interface for the pi coding agent", start_url: "/", scope: "/", display: "standalone", background_color: "#1a1a1a", theme_color: "#1a1a1a", categories: ["developer", "productivity"], lang: "en", icons: [ { src: "/icons/icon-192.png", sizes: "192x192", type: "image/png", purpose: "any", }, { src: "/icons/icon-512.png", sizes: "512x512", type: "image/png", purpose: "any", }, ], }; }