From 853e274a9d61ae5108b30925853280b1807864e4 Mon Sep 17 00:00:00 2001 From: b1rdmania <102524336+b1rdmania@users.noreply.github.com> Date: Mon, 29 Dec 2025 13:22:19 +0000 Subject: [PATCH] Tighten share copy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Title: "WARIO SYNTH" or "Song Name - WARIO SYNTH" - Description: "Tap to play this Gameboy tune" - Switch to summary card (smaller image) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- play.html | 14 +++++++------- server/src/server.ts | 8 +++----- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/play.html b/play.html index f4fd564..961e61a 100644 --- a/play.html +++ b/play.html @@ -3,12 +3,12 @@ - Check out this Gameboy tune — WARIO SYNTH - + WARIO SYNTH + - - + + @@ -16,9 +16,9 @@ - - - + + + diff --git a/server/src/server.ts b/server/src/server.ts index 94a671c..58b9e8c 100644 --- a/server/src/server.ts +++ b/server/src/server.ts @@ -220,10 +220,8 @@ app.get('/s/:code', async (req, res) => { const imageUrl = origin ? `${origin}/wario-sprite.png` : '/wario-sprite.png'; const sharedTitle = (payload.title || '').trim(); - const ogTitle = sharedTitle ? `WARIO SYNTH: ${sharedTitle}` : 'WARIO SYNTH'; - const ogDescription = sharedTitle - ? `Someone shared "${sharedTitle}" with you. Tap to play it through the Wario Synthesis Engine — then generate your own.` - : 'Someone shared a song with you. Tap to play it through the Wario Synthesis Engine — then generate your own.'; + const ogTitle = sharedTitle ? `${sharedTitle} - WARIO SYNTH` : 'WARIO SYNTH'; + const ogDescription = 'Tap to play this Gameboy tune'; const html = ` @@ -241,7 +239,7 @@ app.get('/s/:code', async (req, res) => { - +