From a0dbc1ab71f42dd83b3dac16aae1f81f46f1cbc0 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 30 May 2026 19:34:09 +0000 Subject: [PATCH] Add crosbynews under-construction Cloudflare Worker Serves a styled "Under Construction" HTML page for crosbynews.com. Worker is named 'crosbynews' and targets account bfadb24d6e09a43ae3187aa145992b68. https://claude.ai/code/session_01XtT6spZfX3PMAuJG7BQTpE --- crosbynews-worker/src/worker.js | 84 ++++++++++++++++++++++++++++++++ crosbynews-worker/wrangler.jsonc | 6 +++ 2 files changed, 90 insertions(+) create mode 100644 crosbynews-worker/src/worker.js create mode 100644 crosbynews-worker/wrangler.jsonc 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" +}