From 850541bc4f0e2de25223c3aa85225626d4d73e53 Mon Sep 17 00:00:00 2001 From: Theo Browne Date: Wed, 29 Jul 2026 18:46:32 -0700 Subject: [PATCH] docs: link iOS and Android app store downloads Co-Authored-By: Claude Fable 5 --- README.md | 2 +- apps/marketing/src/layouts/Layout.astro | 9 ++++++- apps/marketing/src/lib/site.ts | 6 +++++ apps/marketing/src/pages/download.astro | 22 +++++++++++++++- apps/marketing/src/pages/index.astro | 35 ++++++++++++++++++++++++- 5 files changed, 70 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9b63f4ac75d..bc34b3f76b4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # T3 Code -T3 Code is an "agent harness control surface". It enables control of the agents on your machine with a best-in-class mobile app, [web app](https://app.t3.codes) and [Electron-based desktop app](https://t3.codes). +T3 Code is an "agent harness control surface". It enables control of the agents on your machine with a best-in-class mobile app ([iOS](https://apps.apple.com/us/app/t3-code-remote-claude-more/id6787819824), [Android](https://play.google.com/store/apps/details?id=com.t3tools.t3code)), [web app](https://app.t3.codes) and [Electron-based desktop app](https://t3.codes). Works with your subscriptions on Claude Code, Codex, Cursor, Grok Build, and OpenCode. If they're set up on your computer, T3 Code can control them. diff --git a/apps/marketing/src/layouts/Layout.astro b/apps/marketing/src/layouts/Layout.astro index 9c454c4b78b..f5e34d0e048 100644 --- a/apps/marketing/src/layouts/Layout.astro +++ b/apps/marketing/src/layouts/Layout.astro @@ -1,5 +1,10 @@ --- -import { GITHUB_REPOSITORY_URL, MARKETING_STATS } from "../lib/site"; +import { + ANDROID_PLAY_STORE_URL, + GITHUB_REPOSITORY_URL, + IOS_APP_STORE_URL, + MARKETING_STATS, +} from "../lib/site"; interface Props { title?: string; @@ -69,6 +74,8 @@ const { GitHub Discord Download + iOS app + Android app Terms Privacy Security diff --git a/apps/marketing/src/lib/site.ts b/apps/marketing/src/lib/site.ts index 92e491a077a..0bf89db8c0f 100644 --- a/apps/marketing/src/lib/site.ts +++ b/apps/marketing/src/lib/site.ts @@ -1,5 +1,11 @@ export const GITHUB_REPOSITORY_URL = "https://github.com/pingdotgg/t3code"; +export const IOS_APP_STORE_URL = + "https://apps.apple.com/us/app/t3-code-remote-claude-more/id6787819824"; + +export const ANDROID_PLAY_STORE_URL = + "https://play.google.com/store/apps/details?id=com.t3tools.t3code"; + export const MARKETING_STATS = { githubStars: "14k+", users: "100,000", diff --git a/apps/marketing/src/pages/download.astro b/apps/marketing/src/pages/download.astro index 76977ad4ce2..111482208cf 100644 --- a/apps/marketing/src/pages/download.astro +++ b/apps/marketing/src/pages/download.astro @@ -1,6 +1,7 @@ --- import Layout from "../layouts/Layout.astro"; import { RELEASES_URL } from "../lib/releases"; +import { ANDROID_PLAY_STORE_URL, IOS_APP_STORE_URL } from "../lib/site"; --- @@ -57,6 +58,24 @@ import { RELEASES_URL } from "../lib/releases"; + + +
+
+ +

Mobile

+
+ +

+ Also on your phone: + iOS + + Android +

@@ -578,6 +589,28 @@ const mobileEndorsementRows = [ opacity: 1; } + .hero-mobile-line { + display: inline-flex; + align-items: center; + gap: 6px; + color: var(--fg-dim); + font-size: 13px; + letter-spacing: -0.005em; + } + + .hero-mobile-line a { + color: var(--fg-muted); + text-decoration: underline; + text-decoration-color: rgba(161, 161, 170, 0.4); + text-underline-offset: 3px; + transition: color 0.18s ease, text-decoration-color 0.18s ease; + } + + .hero-mobile-line a:hover { + color: var(--fg); + text-decoration-color: var(--fg); + } + /* Download button icons (platform-aware) */ .dl-icon { display: none;