From 50e284d3443644be4f9d5849bcf42be819c17f9a Mon Sep 17 00:00:00 2001 From: satyaborg Date: Tue, 9 Jun 2026 14:00:08 +1000 Subject: [PATCH 1/2] chore: update landing site (footer, favicon, install redirect) --- site/index.html | 39 +++++++++++++++++++++++++-------------- site/public/_redirects | 1 + site/public/devloop.svg | 4 ++++ site/public/favicon.svg | 4 ++++ 4 files changed, 34 insertions(+), 14 deletions(-) create mode 100644 site/public/_redirects create mode 100644 site/public/devloop.svg create mode 100644 site/public/favicon.svg diff --git a/site/index.html b/site/index.html index de513fd..94f3080 100644 --- a/site/index.html +++ b/site/index.html @@ -9,10 +9,8 @@ content="devloop is a single Bash CLI that runs a local implement-and-review loop for agent-written code. Codex codes, Claude reviews, retries until accepted." /> - + +
- -
- BLOG - GITHUB -
@@ -63,7 +52,7 @@ >
$ curl -fsSL https://devloop.sh/install | bash
+ >$ curl -fsSL https://devloop.sh/install | bash
+ + +
diff --git a/site/public/_redirects b/site/public/_redirects new file mode 100644 index 0000000..eb2ad6f --- /dev/null +++ b/site/public/_redirects @@ -0,0 +1 @@ +/install https://raw.githubusercontent.com/satyaborg/devloop/main/scripts/install.remote.sh 302 diff --git a/site/public/devloop.svg b/site/public/devloop.svg new file mode 100644 index 0000000..fdf7958 --- /dev/null +++ b/site/public/devloop.svg @@ -0,0 +1,4 @@ + + + + diff --git a/site/public/favicon.svg b/site/public/favicon.svg new file mode 100644 index 0000000..008931b --- /dev/null +++ b/site/public/favicon.svg @@ -0,0 +1,4 @@ + + + + From 7d3f1697219f3df77ee389c5780cf8b38e29c1b7 Mon Sep 17 00:00:00 2001 From: satyaborg Date: Tue, 9 Jun 2026 14:10:51 +1000 Subject: [PATCH 2/2] fix: add wrangler config so cloudflare deploys static assets --- site/wrangler.jsonc | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 site/wrangler.jsonc diff --git a/site/wrangler.jsonc b/site/wrangler.jsonc new file mode 100644 index 0000000..c7a6ca5 --- /dev/null +++ b/site/wrangler.jsonc @@ -0,0 +1,7 @@ +{ + "name": "devloop", + "compatibility_date": "2026-06-09", + "assets": { + "directory": "./dist" + } +}