+ )
+}
diff --git a/apps/web-roo-code/src/app/roomote-control/page.tsx b/apps/web-roo-code/src/app/roomote-control/page.tsx
new file mode 100644
index 0000000000..bed152a504
--- /dev/null
+++ b/apps/web-roo-code/src/app/roomote-control/page.tsx
@@ -0,0 +1,54 @@
+import type { Metadata } from "next"
+import { RoomoteHero } from "@/components/roomote-control/hero"
+import { NarrativeBand } from "@/components/roomote-control/narrative-band"
+import { HowItWorks } from "@/components/roomote-control/how-it-works"
+import { FeatureGrid } from "@/components/roomote-control/feature-grid"
+import { RoomoteTestimonials } from "@/components/roomote-control/testimonials"
+import { RoomoteFAQ } from "@/components/roomote-control/faq"
+import { FinalCTA } from "@/components/roomote-control/final-cta"
+
+export const metadata: Metadata = {
+ title: "Roo Code Cloud | Roomote Control – Manage coding tasks from mobile & web browser in addition to the IDE",
+ description:
+ "Roomote Control keeps coding moving, wherever you are. Start tasks in your editor, manage them from your phone or browser, and watch your workspace mirror into the cloud.",
+ alternates: {
+ canonical: "https://roocode.com/roomote-control",
+ },
+ openGraph: {
+ title: "Roo Code Cloud | Roomote Control",
+ description:
+ "Manage coding tasks from mobile & web browser in addition to the IDE. Your first truly hybrid coding teammate.",
+ url: "https://roocode.com/roomote-control",
+ siteName: "Roo Code",
+ images: [
+ {
+ url: "https://roocode.com/og-roomote-control.png",
+ width: 1200,
+ height: 630,
+ alt: "Roomote Control - Hybrid coding across IDE, cloud, and mobile",
+ },
+ ],
+ locale: "en_US",
+ type: "website",
+ },
+ twitter: {
+ card: "summary_large_image",
+ title: "Roo Code Cloud | Roomote Control",
+ description: "Manage coding tasks from mobile & web browser in addition to the IDE",
+ images: ["https://roocode.com/og-roomote-control.png"],
+ },
+}
+
+export default function RoomoteControlPage() {
+ return (
+ <>
+
+
+
+
+
+
+
+ >
+ )
+}
diff --git a/apps/web-roo-code/src/components/roomote-control/faq.tsx b/apps/web-roo-code/src/components/roomote-control/faq.tsx
new file mode 100644
index 0000000000..0fef50cbe0
--- /dev/null
+++ b/apps/web-roo-code/src/components/roomote-control/faq.tsx
@@ -0,0 +1,144 @@
+"use client"
+
+import { useState } from "react"
+import { motion } from "framer-motion"
+import { ChevronDown } from "lucide-react"
+import { cn } from "@/lib/utils"
+
+interface FAQItem {
+ question: string
+ answer: string
+}
+
+const faqs: FAQItem[] = [
+ {
+ question: "What is Roo Code Cloud?",
+ answer: "Roo Code Cloud is a web-based platform that extends your Roo Code extension with cloud-powered features. By connecting your local VS Code extension to the cloud, you unlock task sharing, usage analytics, and remote control options that enhance your AI-assisted development workflow. [Learn more](https://docs.roocode.com/roo-code-cloud/what-is-roo-code-cloud).",
+ },
+ {
+ question: "What is Roomote Control?",
+ answer: "Roomote Control creates a bidirectional connection between your local extension and Roo Code Cloud, enabling real-time monitoring and control of Roo Code tasks running in your extension directly from the Roo Code Cloud mobile or web interface. [Learn more](https://docs.roocode.com/roo-code-cloud/roomote-control).",
+ },
+ {
+ question: "How do I enable Roomote Control?",
+ answer: "Open the Roo Code extension, go to the Account tab, and toggle on Roomote Control. Sign in with GitHub, Google, or email to connect your extension to Roo Code Cloud. Once connected, your workspace appears under Connected Workspaces and your tasks automatically sync across devices and sessions. Learn more about [Login/Signup](https://docs.roocode.com/roo-code-cloud/login).",
+ },
+ {
+ question: "Can I disable it?",
+ answer: "Yes. Toggle off anytime or log out of Roo Cloud.",
+ },
+ {
+ question: "Is my code safe?",
+ answer: "Roo only shares the context needed for tasks, not your full repo. Run Roo in your own infrastructure with confidence. See our [Roo Code Cloud docs](https://docs.roocode.com/roo-code-cloud/what-is-roo-code-cloud) and [Roo Code Trust Center](https://trust.roocode.com/) for additional security details.",
+ },
+ {
+ question: "What is free vs. paid?",
+ answer: "Free users can monitor tasks in real time and view previously logged work in Roo Code Cloud. Pro ($20/mo after free 14-day trial) unlocks full Roomote Control — start, stop, create, edit, and manage tasks remotely. Cancel anytime, no commitment. Learn more about [Free vs. Paid Features](https://docs.roocode.com/roo-code-cloud/billing-subscriptions#pro-plan-20month).",
+ },
+ {
+ question: "How does billing work?",
+ answer: "Pro is billed at $20 per user, per month. Plans are month-to-month, and you can cancel anytime. Billing is handled through Stripe, and no credit card is required to start with the free plan. Learn more about [Billing & Subscriptions](https://docs.roocode.com/roo-code-cloud/billing-subscriptions).",
+ },
+ {
+ question: 'What does "priority support" include?',
+ answer: "Pro subscribers get faster responses from the Roo Code team on Discord and email, as well as early access to new features and roadmap previews. Learn more about [Plan Tiers](https://docs.roocode.com/roo-code-cloud/billing-subscriptions).",
+ },
+ {
+ question: "Are there any limits in the free plan?",
+ answer: "Free users can monitor and view logged tasks, but cannot start new tasks from the web or exercise full edit controls. Learn more about [Plan Tiers](https://docs.roocode.com/roo-code-cloud/billing-subscriptions).",
+ },
+ {
+ question: "Which builds are supported?",
+ answer: "Latest Roo Code extension and a connected Git provider.",
+ },
+ {
+ question: "What about notifications?",
+ answer: 'Completion notifications are rolling out shortly. Features marked "coming soon" are actively in development and will be available to all users as they launch.',
+ },
+ {
+ question: "Can I share tasks with teammates?",
+ answer: "Yes. You can share individual tasks with colleagues or the community through secure, expiring links. Control what you share and when, with links that automatically expire after 30 days for enhanced security. Learn more about [Task Sharing](https://docs.roocode.com/roo-code-cloud/task-sharing).",
+ },
+]
+
+export function RoomoteFAQ() {
+ const [openIndex, setOpenIndex] = useState(null)
+
+ const toggleFAQ = (index: number) => {
+ setOpenIndex(openIndex === index ? null : index)
+ }
+
+ return (
+
+
+ Build on your terms, wherever you work. Start free or upgrade to Pro for full control.
+
+
+
+
+
+
+
+
+ )
+}
diff --git a/apps/web-roo-code/src/components/roomote-control/hero.tsx b/apps/web-roo-code/src/components/roomote-control/hero.tsx
new file mode 100644
index 0000000000..9420eb4012
--- /dev/null
+++ b/apps/web-roo-code/src/components/roomote-control/hero.tsx
@@ -0,0 +1,92 @@
+"use client"
+
+import { motion } from "framer-motion"
+import Link from "next/link"
+import { Play } from "lucide-react"
+import { Button } from "@/components/ui"
+
+export function RoomoteHero() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+ Early Access
+
+ {/* Glint effect */}
+
+
+
+ Roomote Control keeps your
+
+ workflow going.
+
+
+
+ Start tasks in your editor, manage them from mobile or web, and stay connected through
+ the Roo Code Cloud dashboard with your first truly{" "}
+ hybrid coding teammate, wherever you are.
+
+
+
+
+
+
+
+
+
+
+ Mobile Ready • Free to Try{" "}
+ • Pro Features $20/month
+
+
+
+
+
+
+ )
+}
diff --git a/apps/web-roo-code/src/components/roomote-control/how-it-works.tsx b/apps/web-roo-code/src/components/roomote-control/how-it-works.tsx
new file mode 100644
index 0000000000..ff7b4b16d6
--- /dev/null
+++ b/apps/web-roo-code/src/components/roomote-control/how-it-works.tsx
@@ -0,0 +1,251 @@
+"use client"
+
+import { motion } from "framer-motion"
+import Link from "next/link"
+import { Monitor, Cloud, Smartphone, ArrowRight } from "lucide-react"
+
+const steps = [
+ {
+ number: "1",
+ title: "Enable in your extension",
+ description:
+ "Open the Roo Code extension, go to the Account tab, and toggle on Roomote Control to get started.",
+ },
+ {
+ number: "2",
+ title: "Connect to Roo Code Cloud",
+ description:
+ "Sign up at app.roocode.com to sync prompts, enable collaboration, and access online task history across devices.",
+ link: { text: "app.roocode.com", href: "https://app.roocode.com/" },
+ },
+ {
+ number: "3",
+ title: "View your cloud dashboard",
+ description:
+ "Your Roo Code Cloud dashboard is the central hub to view task history, monitor usage, and manage remote workspaces.",
+ link: { text: "Roo Code Cloud dashboard", href: "https://app.roocode.com/" },
+ },
+ {
+ number: "4",
+ title: "Follow from mobile or web",
+ description:
+ "See your task list, usage analytics, and real-time updates in Roo Code Cloud — no need to reopen your IDE.",
+ },
+ {
+ number: "5",
+ title: "Unlock Pro for full control",
+ description:
+ "Upgrade to Pro ($20/mo) to start, stop, approve, and refine tasks remotely, with priority support and early access to features.",
+ link: { text: "Upgrade to Pro", href: "https://app.roocode.com/billing" },
+ },
+]
+
+export function HowItWorks() {
+ const containerVariants = {
+ hidden: { opacity: 0 },
+ visible: {
+ opacity: 1,
+ transition: {
+ staggerChildren: 0.1,
+ delayChildren: 0.2,
+ },
+ },
+ }
+
+ const itemVariants = {
+ hidden: {
+ opacity: 0,
+ x: -20,
+ },
+ visible: {
+ opacity: 1,
+ x: 0,
+ transition: {
+ duration: 0.5,
+ ease: [0.21, 0.45, 0.27, 0.9],
+ },
+ },
+ }
+
+ return (
+
+
+
+
+
+
+
+
+
+
How it works
+
+
+
+
+ {steps.map((step, index) => {
+ return (
+
+
+
+
+ {/* Number icon with gradient background matching other sections */}
+
+
+
+ {step.number}
+
+
+
+
{step.title}
+
+ {step.description.split(step.link?.text || "").map((part, i) => {
+ if (i === 0) return part
+ if (step.link) {
+ return (
+
+
+ {step.link.text}
+
+ {part}
+
+ )
+ }
+ return part
+ })}
+
+ Start tasks in your editor, then check progress during a meeting, refine while
+ waiting for lunch, or approve changes from your phone.
+
+
+
+
+
+ {/* Card 2 - Transparent control */}
+
+
+
+
+
+
+
+
+
+
Transparent control
+
+ Traditional IDE plugins stop when your laptop closes, and other cloud agents can
+ feel opaque. Roomote Control keeps you productive with full oversight.
+
+
+
+
+
+ {/* Card 3 - True hybrid coding */}
+
+
+
+
+
+
+
+
+
+
True hybrid coding
+
+ This is the first step in our vision for Roo Code Cloud, extending Roo Code
+ beyond the editor and making it your true teammate across IDE, cloud, and
+ mobile.
+
+
+
+
+
+
+
+
+ )
+}
diff --git a/apps/web-roo-code/src/components/roomote-control/testimonials.tsx b/apps/web-roo-code/src/components/roomote-control/testimonials.tsx
new file mode 100644
index 0000000000..47263bc310
--- /dev/null
+++ b/apps/web-roo-code/src/components/roomote-control/testimonials.tsx
@@ -0,0 +1,131 @@
+"use client"
+
+import { useState } from "react"
+import { motion } from "framer-motion"
+import Image from "next/image"
+
+const testimonials = [
+ {
+ quote: "You can do almost anything that you can do in your local instance... It's a pretty sleek interface. The interaction works amazingly well — almost like the local Roo Code. And I haven't seen any issues... Another thing that is more of a cloud feature, is you can see the tasks that you have made here. I really like this because you can start some tasks, let them run in the background if you're outside or busy, and then come back and plug right back into the same Roo Code that you already love without compromising on any of the features, because it's literally just Roo Code being interfaced via a web UI.",
+ author: "AI Code King",
+ avatar: "/ai-code-king.jpg",
+ fallback: "/placeholder_pfp.png",
+ },
+ {
+ quote: "What Roo Code has done is they've actually come out and created a cloud-based version of this where theoretically, you can do what I was doing here, have a computer set up with multiple instances of your IDE, and basically run it in your own infrastructure and you're controlling it through this orchestrator that Roo Code has called Roomote. Maybe I'm out to lunch somewhere and I want to think through something, I can do that remotely with my computer. It's pretty sweet to be honest.",
+ author: "Adam Larson, GosuCoder",
+ avatar: "/adam-larson.jpg",
+ fallback: "/placeholder_pfp.png",
+ },
+]
+
+export function RoomoteTestimonials() {
+ const [imageErrors, setImageErrors] = useState<{ [key: number]: boolean }>({})
+ const [imagesLoaded, setImagesLoaded] = useState<{ [key: number]: boolean }>({})
+
+ const containerVariants = {
+ hidden: { opacity: 0 },
+ visible: {
+ opacity: 1,
+ transition: {
+ staggerChildren: 0.2,
+ delayChildren: 0.3,
+ },
+ },
+ }
+
+ const itemVariants = {
+ hidden: {
+ opacity: 0,
+ y: 20,
+ },
+ visible: {
+ opacity: 1,
+ y: 0,
+ transition: {
+ duration: 0.6,
+ ease: [0.21, 0.45, 0.27, 0.9],
+ },
+ },
+ }
+
+ const handleImageError = (index: number) => {
+ setImageErrors((prev) => ({ ...prev, [index]: true }))
+ setImagesLoaded((prev) => ({ ...prev, [index]: true }))
+ }
+
+ const handleImageLoad = (index: number) => {
+ setImagesLoaded((prev) => ({ ...prev, [index]: true }))
+ }
+
+ return (
+
+
+
+
What developers are saying
+
+ Real feedback from early adopters using Roomote Control in the wild.
+