Skip to content

Commit cb91ebc

Browse files
committed
Copy tweaks
1 parent 87d50a7 commit cb91ebc

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

apps/web-roo-code/src/app/page.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ export default async function Home() {
2828
<div className="grid h-full relative gap-8 md:gap-12 lg:grid-cols-2 lg:gap-16">
2929
<div className="flex flex-col px-4 justify-center space-y-6 sm:space-y-8">
3030
<div>
31-
<h1 className="text-3xl font-bold tracking-tight mt-8 sm:text-4xl md:text-5xl lg:text-6xl lg:mt-0">
32-
An entire AI-powered dev team. In your editor and beyond.
31+
<h1 className="text-3xl font-bold tracking-tight mt-8 sm:text-4xl md:text-4xl lg:text-5xl lg:mt-0">
32+
The AI dev team which gets things done.
3333
</h1>
3434
<p className="mt-4 max-w-md text-base text-muted-foreground sm:mt-6 sm:text-lg">
35-
Roo&apos;s model-agnostic, specialized modes and fine-grained auto-approval controls
36-
give you the tools (and the confidence) to get AI working for you.
35+
Roo&apos;s specialized modes stay on task and ship great code. Open source and works
36+
with any model.
3737
</p>
3838
</div>
3939
<div className="flex flex-col space-y-3 sm:flex-row sm:space-x-4 sm:space-y-0">
@@ -44,7 +44,7 @@ export default async function Home() {
4444
href="https://marketplace.visualstudio.com/items?itemName=RooVeterinaryInc.roo-cline"
4545
target="_blank"
4646
className="flex w-full items-center justify-center">
47-
Install Extension
47+
Install VSCode Extension
4848
<ArrowRight className="ml-2" />
4949
</a>
5050
</Button>
@@ -56,7 +56,7 @@ export default async function Home() {
5656
href={EXTERNAL_LINKS.CLOUD_APP_SIGNUP}
5757
target="_blank"
5858
className="flex w-full items-center justify-center">
59-
Get started with Cloud
59+
Try Cloud
6060
<ArrowRight className="ml-2" />
6161
</a>
6262
</Button>

apps/web-roo-code/src/components/homepage/features.tsx

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client"
22

33
import { motion } from "framer-motion"
4-
import { Brain, Shield, Users2, ReplaceAll, Keyboard, LucideIcon, CheckCheck } from "lucide-react"
4+
import { Shield, Users2, ReplaceAll, Keyboard, LucideIcon, CheckCheck, GitPullRequest } from "lucide-react"
55

66
export interface Feature {
77
icon: LucideIcon
@@ -14,7 +14,7 @@ export const features: Feature[] = [
1414
icon: Users2,
1515
title: "Specialized Modes",
1616
description:
17-
"Planning, Architecture, Debugging and beyond: Roo's modes stay on-task and deliver. Create your own modes or download from the marketplace.",
17+
"Planning, Architecture, Debugging and beyond: Roo's modes stay on-task and deliver. They even know when to hand off work to other modes. Create your own modes or download from the marketplace.",
1818
},
1919
{
2020
icon: ReplaceAll,
@@ -24,25 +24,26 @@ export const features: Feature[] = [
2424
{
2525
icon: CheckCheck,
2626
title: "Granular auto-approval",
27-
description: "Control each action and make Roo as autonomous as you want as you build confidence. Or go YOLO.",
27+
description:
28+
"Control each action and make Roo as autonomous as you want as you build confidence. Or go YOLO and let it rip.",
2829
},
2930
{
30-
icon: Keyboard,
31-
title: "Highly Customizable",
31+
icon: GitPullRequest,
32+
title: "Proudly open source",
3233
description:
33-
"Fine-tune settings for Roo to work for you, like inference context, model properties, slash commands and more.",
34+
"Community-driven and fully auditable: no throttling or surprises about what's happening behind the scenes.",
3435
},
3536
{
36-
icon: Brain,
37-
title: "Deep Project-wide Context",
37+
icon: Keyboard,
38+
title: "Highly Customizable",
3839
description:
39-
"Roo Code reads your entire codebase, preserving valid code through diff-based edits for seamless multi-file refactors.",
40+
"Fine-tune settings for Roo to work for you, like inference context, model properties, slash commands and more.",
4041
},
4142
{
4243
icon: Shield,
4344
title: "Secure and Private by Design",
4445
description:
45-
"Open source and local-first. No code leaves your machine unless you say so. SOC 2 Type II compliant.",
46+
"Client-only architecture means no code leaves your machine unless you say so. SOC 2 Type II compliant.",
4647
},
4748
]
4849

@@ -108,7 +109,7 @@ export function Features() {
108109
initial="hidden"
109110
whileInView="visible"
110111
viewport={{ once: true }}>
111-
<ul className="grid grid-cols-1 gap-6 md:grid-cols-2 lg:grid-cols-3 lg:gap-8">
112+
<ul className="grid grid-cols-1 place-items-center gap-6 md:grid-cols-2 lg:grid-cols-3 lg:gap-8">
112113
{features.map((feature, index) => {
113114
const Icon = feature.icon
114115
return (

0 commit comments

Comments
 (0)