export default { async fetch(request) { const html = ` Forest City Tech Co-op — new site under construction
FOREST CITY TECH CO-OP

NEW SITE
UNDER CONSTRUCTION

We are building a new forestcitytechcoop.org. Back soon.

Need something in the meantime? info@forestcitytechcoop.org

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