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}
))}