SPB Git forge

spb/websensor

Public
33commits 1branches 0releases
3.4 MBsize
maindefault branch
10 days agolast push
TypeScript 55.4% Python 43.2% SQL 1.2%
814 B · 20 lines typescript
Raw Blame History
1import type { MetadataRoute } from "next";23export default function manifest(): MetadataRoute.Manifest {4  return {5    name: "WebSensor — Real-time Internet change intelligence",6    short_name: "WebSensor",7    description: "The Web is changing. We are watching. Detect what changed, know why it matters.",8    start_url: "/",9    display: "standalone",10    background_color: "#0a0e15",11    theme_color: "#0a0e15",12    icons: [13      { src: "/icon.svg", sizes: "any", type: "image/svg+xml", purpose: "any" },14      { src: "/icons/icon-192.png", sizes: "192x192", type: "image/png", purpose: "any" },15      { src: "/icons/icon-512.png", sizes: "512x512", type: "image/png", purpose: "any" },16      { src: "/icons/icon-512-maskable.png", sizes: "512x512", type: "image/png", purpose: "maskable" },17    ],18  };19}20