export const name = "McGraw Hill"; export const url = "https://connected.mcgraw-hill.com/connected/permLinkLogin.do"; // status.mcgrawhill.com is a JS-rendered page with no accessible API. // Synthetic check against the ConnectED portal instead. const PROBE_URL = "https://connected.mcgraw-hill.com/connected/permLinkLogin.do"; export async function checkStatus() { const res = await fetch(PROBE_URL, { method: "HEAD" }); return { name, status: "operational", message: `ConnectED portal responding (HTTP ${res.status}).`, lastUpdated: new Date().toISOString(), }; }