diff --git a/crosbynews-worker/src/worker.js b/crosbynews-worker/src/worker.js new file mode 100644 index 0000000..a68682f --- /dev/null +++ b/crosbynews-worker/src/worker.js @@ -0,0 +1,84 @@ +const HTML = ` + + + + + CrosbyNews — Coming Soon + + + +
+
🚧
+

CrosbyNews

+

We're working on something great.
Check back soon.

+ Under Construction +

crosbynews.com

+
+ +`; + +export default { + fetch() { + return new Response(HTML, { + status: 200, + headers: { "Content-Type": "text/html;charset=UTF-8" }, + }); + }, +}; diff --git a/crosbynews-worker/wrangler.jsonc b/crosbynews-worker/wrangler.jsonc new file mode 100644 index 0000000..50f001d --- /dev/null +++ b/crosbynews-worker/wrangler.jsonc @@ -0,0 +1,6 @@ +{ + "name": "crosbynews", + "main": "./src/worker.js", + "compatibility_date": "2026-02-24", + "account_id": "bfadb24d6e09a43ae3187aa145992b68" +}