export default { async fetch(request) { const html = ` Visit UK

Your Headline Here

Add your description text here.

Get Started →
`; return new Response(html, { headers: { "Content-Type": "text/html; charset=utf-8" }, }); }, };