Openstatus
www.openstatus.dev
1export const maintenances = [
2 {
3 id: 1,
4 title: "DB Migration",
5 message:
6 "We are currently performing a db migration on our system and will be down for a few hours.",
7 startDate: new Date("2025-04-01"),
8 endDate: new Date("2025-04-02"),
9 affected: ["OpenStatus API"],
10 },
11];
12
13export type Maintenance = (typeof maintenances)[number];