From 19cbe89dd153c3b59fac87a15a17dd6fbb170144 Mon Sep 17 00:00:00 2001 From: Moskovkin Ilya Date: Mon, 8 Jun 2026 12:56:33 +0700 Subject: [PATCH] landing: replace misleading "Available" platform labels with honest status The Platforms section flatly labeled Web, iOS/Android and macOS/Windows all as "Available", implying the app is shipped on the App Store, Play Store and as a downloadable desktop installer. Only Web is actually available; the mobile/desktop targets are buildable Capacitor/Electron shells, not store-distributed downloads, and the rows aren't even links. Reflect reality: Web -> Available, iOS/Android -> Capacitor-ready, macOS/Windows -> Electron-ready. Co-Authored-By: Claude Opus 4.8 (1M context) --- app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index 3d53825..21511d1 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -34,9 +34,9 @@ const features = [ ] const platforms = [ - { icon: Globe, label: "Web" }, - { icon: Smartphone, label: "iOS / Android" }, - { icon: Monitor, label: "macOS / Windows" }, + { icon: Globe, label: "Web", note: "Available" }, + { icon: Smartphone, label: "iOS / Android", note: "Capacitor-ready" }, + { icon: Monitor, label: "macOS / Windows", note: "Electron-ready" }, ] const stack = [ @@ -241,7 +241,7 @@ export default function Landing() { {p.label} - Available + {p.note} ))}