import type { MetadataRoute } from "next"; import brand from "@/brand.config"; export default function manifest(): MetadataRoute.Manifest { return { name: brand.name, short_name: brand.name, description: brand.tagline, start_url: "/", display: "standalone", background_color: brand.colors.bg, theme_color: brand.colors.accent, icons: [ { src: "/brand/icon-192.png", sizes: "192x192", type: "image/png" }, { src: "/brand/icon-512.png", sizes: "512x512", type: "image/png" }, ], }; }