export default { async fetch(request) { const html = ` Under Construction

Coming Soon

Our website is currently under construction. We will be live soon!

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