11"use client"
22
33import { 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
66export 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