From 4f8c9688a2ed35ae2062acdb20dff20525119520 Mon Sep 17 00:00:00 2001 From: Bruno Bergher Date: Wed, 23 Jul 2025 18:28:30 +0100 Subject: [PATCH] Roo Code Cloud Waitlist CTAs (#6104) Co-authored-by: Roo Code Co-authored-by: Bruno Bergher --- apps/web-roo-code/next.config.ts | 6 + .../src/components/chromes/nav-bar.tsx | 37 +++- webview-ui/src/components/chat/ChatView.tsx | 19 +- .../chat/__tests__/ChatView.spec.tsx | 197 ++++++++++++++++++ .../src/components/welcome/RooCloudCTA.tsx | 23 ++ webview-ui/src/components/welcome/RooTips.tsx | 77 ++----- .../welcome/__tests__/RooTips.spec.tsx | 16 +- webview-ui/src/i18n/locales/ca/chat.json | 5 + webview-ui/src/i18n/locales/de/chat.json | 5 + webview-ui/src/i18n/locales/en/chat.json | 5 + webview-ui/src/i18n/locales/es/chat.json | 5 + webview-ui/src/i18n/locales/fr/chat.json | 5 + webview-ui/src/i18n/locales/hi/chat.json | 5 + webview-ui/src/i18n/locales/id/chat.json | 5 + webview-ui/src/i18n/locales/it/chat.json | 5 + webview-ui/src/i18n/locales/ja/chat.json | 5 + webview-ui/src/i18n/locales/ko/chat.json | 5 + webview-ui/src/i18n/locales/nl/chat.json | 5 + webview-ui/src/i18n/locales/pl/chat.json | 5 + webview-ui/src/i18n/locales/pt-BR/chat.json | 5 + webview-ui/src/i18n/locales/ru/chat.json | 5 + webview-ui/src/i18n/locales/tr/chat.json | 5 + webview-ui/src/i18n/locales/vi/chat.json | 5 + webview-ui/src/i18n/locales/zh-CN/chat.json | 5 + webview-ui/src/i18n/locales/zh-TW/chat.json | 5 + 25 files changed, 380 insertions(+), 85 deletions(-) create mode 100644 webview-ui/src/components/welcome/RooCloudCTA.tsx diff --git a/apps/web-roo-code/next.config.ts b/apps/web-roo-code/next.config.ts index 27f71d6b57..2bc1736483 100644 --- a/apps/web-roo-code/next.config.ts +++ b/apps/web-roo-code/next.config.ts @@ -21,6 +21,12 @@ const nextConfig: NextConfig = { destination: "https://roocode.com/:path*", permanent: true, }, + // Redirect cloud waitlist to Notion page + { + source: "/cloud-waitlist", + destination: "https://shard-dogwood-daf.notion.site/238fd1401b0a8087b858e1ad431507cf?pvs=105", + permanent: false, + }, ] }, } diff --git a/apps/web-roo-code/src/components/chromes/nav-bar.tsx b/apps/web-roo-code/src/components/chromes/nav-bar.tsx index c9b1df9f2b..336c6236e1 100644 --- a/apps/web-roo-code/src/components/chromes/nav-bar.tsx +++ b/apps/web-roo-code/src/components/chromes/nav-bar.tsx @@ -61,18 +61,11 @@ export function NavBar({ stars, downloads }: NavBarProps) { className="text-muted-foreground transition-transform duration-200 hover:scale-105 hover:text-foreground"> Enterprise - - Security - - Documentation + Docs Careers +
+
+ + Roo Code Cloud is coming + + + Sign up + +
+
@@ -119,6 +125,19 @@ export function NavBar({ stars, downloads }: NavBarProps) {