From 2844134064a443e36546f5c20c965ad74457fd17 Mon Sep 17 00:00:00 2001 From: salva-dali2997 Date: Tue, 1 Sep 2026 19:35:02 -0400 Subject: [PATCH] add worker js file --- worker.js | 352 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 352 insertions(+) create mode 100644 worker.js 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