Files
gitlab-instance-0a899031_cn…/app/manifest.ts
root a1daa040ef s
2026-06-07 18:06:52 +08:00

29 lines
657 B
TypeScript

import type { MetadataRoute } from "next";
export default function manifest(): MetadataRoute.Manifest {
return {
name: "Nomadro 数字游民指南",
short_name: "Nomadro",
description: "数字游民的一站式生活操作系统。",
start_url: "/zh/digital",
scope: "/",
display: "standalone",
background_color: "#ffffff",
theme_color: "#ff4d4f",
icons: [
{
src: "/globe.svg",
sizes: "any",
type: "image/svg+xml",
purpose: "any",
},
{
src: "/globe.svg",
sizes: "any",
type: "image/svg+xml",
purpose: "maskable",
},
],
};
}