Openstatus www.openstatus.dev
at 4c0f4c00a38753a5d0dfd7e7b7b7706dec6f1503 17 lines 447 B view raw
1export const statusPages = [ 2 { 3 id: 1, 4 name: "OpenStatus Status", 5 description: "See our uptime history and status reports.", 6 slug: "status", 7 favicon: "https://openstatus.dev/favicon.ico", 8 domain: "status.openstatus.dev", 9 protected: true, 10 showValues: false, 11 // NOTE: the worst status of a report 12 status: "degraded" as const, 13 monitors: [], 14 }, 15]; 16 17export type StatusPage = (typeof statusPages)[number];