export default { async fetch(request) { const html = ` System Upgrade - Ting Digital
System Upgrade in Progress

We'll be back soon!

Ting Digital is currently undergoing a scheduled infrastructure migration to enhance our service performance and reliability.

We apologize for any inconvenience. Please check back shortly.

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