export default { async fetch(request) { const html = ` POUNDS UP

POUNDS UP

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