import type { MetadataRoute } from "next"; function svgIcon(size: number): string { const svg = `PA`; return `data:image/svg+xml,${encodeURIComponent(svg)}`; } export default function manifest(): MetadataRoute.Manifest { return { name: "Project Afterlife", short_name: "Afterlife", description: "Preserving online games", start_url: "/", display: "standalone", background_color: "#0f172a", theme_color: "#0f172a", icons: [ { src: svgIcon(192), sizes: "192x192", type: "image/svg+xml", }, { src: svgIcon(512), sizes: "512x512", type: "image/svg+xml", }, ], }; }