source for getorbyt.com getorbyt.com/
client bsky orbytapp app orbyt bluesky getorbyt orbytvideo atproto video

Update app.astro to use a static app URL for QR code generation, removing server-side URL handling for a simplified landing page experience.

+1 -3
+1 -3
src/pages/app.astro
··· 1 1 --- 2 - const url = Astro.url; 3 - 4 2 // All users see this landing page with QR code 5 - const appUrl = `${url.origin}/app`; 3 + const appUrl = 'https://getorbyt.com/app'; 6 4 const qrCodeUrl = `https://api.qrserver.com/v1/create-qr-code/?size=200x200&bgcolor=000000&color=f3f5fe&data=${encodeURIComponent(appUrl)}`; 7 5 --- 8 6 <!doctype html>