Openstatus
www.openstatus.dev
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];