From 52447904329300bb6a406546e2534bd49b427d9a Mon Sep 17 00:00:00 2001 From: reecelikesramen <3149587+reecelikesramen@users.noreply.github.com> Date: Mon, 4 May 2026 00:27:07 -0600 Subject: [PATCH] fix(marketing): hero counter uses shorthand count += 1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Marketing pitch advertises 'wrap a value in wire() and any template that reads it updates automatically' — keep the snippet to the shorthand, not .value. --- site/src/pages/index.astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/pages/index.astro b/site/src/pages/index.astro index e7d81e9..59d4d2e 100644 --- a/site/src/pages/index.astro +++ b/site/src/pages/index.astro @@ -21,7 +21,7 @@ const pywireCode = `--- count = wire(0) ---

Count: {count}

-`