export async function onRequest(context) { const country = context.request.cf?.country || "UNKNOWN"; const html = ` Halaman Utama

Halaman Utama

Kode negara pengunjung: ${country}

`; return new Response(html, { headers: { "content-type": "text/html; charset=UTF-8" } }); }