export const name = "Classkick"; export const url = "https://classkick.statuscast.com/"; // No public JSON status API — StatusCast requires a Bearer token. // Synthetic check against the app; link to StatusCast page for incident details. const PROBE_URL = "https://app.classkick.com/"; export async function checkStatus() { const res = await fetch(PROBE_URL, { method: "HEAD" }); return { name, status: res.ok ? "operational" : "degraded", message: res.ok ? `App portal responding (HTTP ${res.status}).` : `Unexpected response from app portal (HTTP ${res.status}).`, lastUpdated: new Date().toISOString(), }; }