diff --git a/worker.js b/worker.js new file mode 100644 index 0000000..680811f --- /dev/null +++ b/worker.js @@ -0,0 +1,352 @@ +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", + }, + }); + }, +}; \ No newline at end of file