export const name = "EdInsight"; export const url = "https://myedinsight.com"; // TODO: No public status page found for Harris Education Solutions. Synthetic // check only — investigate whether Harris offers a status API or webhook feed. const PROBE_URL = "https://myedinsight.com"; export async function checkStatus() { const res = await fetch(PROBE_URL, { method: "HEAD" }); return { name, status: "operational", message: `Portal responding (HTTP ${res.status}).`, lastUpdated: new Date().toISOString(), }; }