This repository was archived by the owner on May 15, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathfeatures.tsx
More file actions
171 lines (164 loc) · 4.9 KB
/
Copy pathfeatures.tsx
File metadata and controls
171 lines (164 loc) · 4.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
"use client"
import { motion } from "framer-motion"
import {
Shield,
Users2,
ReplaceAll,
Keyboard,
LucideIcon,
CheckCheck,
GitPullRequest,
Boxes,
TextSearch,
} from "lucide-react"
import Image from "next/image"
export interface Feature {
icon: LucideIcon
title: string
description: string
logos?: string[]
}
export const features: Feature[] = [
{
icon: Users2,
title: "Specialized modes",
description:
"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 for your workflow.",
},
{
icon: ReplaceAll,
title: "Model-agnostic",
description:
"Use the Roo Code cloud Provider, bring your own provider key or even run local inference — no markup, lock-in, no restrictions.",
logos: ["Anthropic", "OpenAI", "Gemini", "Grok", "Qwen", "Kimi", "Mistral", "Ollama"],
},
{
icon: CheckCheck,
title: "Granular auto-approval",
description:
"Control each action and make Roo as autonomous as you want as you build confidence. Or go BRRR and let it rip.",
},
{
icon: Boxes,
title: "Large task coordination",
description:
"Orchestrator mode handles large tasks by coordinating tasks for other agents, running for hours and delivering.",
},
{
icon: TextSearch,
title: "Performant with large codebases",
description: "Configurable integrated semantic search for quicker retrieval in large codebases.",
},
{
icon: Keyboard,
title: "Highly customizable",
description:
"Fine-tune settings for Roo to work for you, like inference context, model properties, slash commands and more. Most settings can be global or serialized in your repository.",
},
{
icon: GitPullRequest,
title: "Proudly open source",
description:
"Community-driven and fully auditable: no throttling or surprises about what's happening behind the scenes.",
},
{
icon: Shield,
title: "Secure and private by design",
description:
"Client-only architecture means no code leaves your machine unless you say so. SOC 2 Type II compliant.",
},
]
export function Features() {
const containerVariants = {
hidden: { opacity: 0 },
visible: {
opacity: 1,
transition: {
staggerChildren: 0.15,
delayChildren: 0.3,
},
},
}
const backgroundVariants = {
hidden: {
opacity: 0,
},
visible: {
opacity: 1,
transition: {
duration: 1.2,
ease: "easeOut" as const,
},
},
}
return (
<section className="relative overflow-hidden border-t border-border py-32">
<motion.div
className="absolute inset-0"
initial="hidden"
whileInView="visible"
viewport={{ once: true }}
variants={backgroundVariants}>
<div className="absolute inset-y-0 left-1/2 h-full w-full max-w-[1200px] -translate-x-1/2">
<div className="absolute left-1/2 top-1/2 h-[800px] w-full -translate-x-1/2 -translate-y-1/2 rounded-[100%] bg-blue-500/10 dark:bg-blue-700/30 blur-[120px]" />
</div>
</motion.div>
<div className="container relative z-10 mx-auto px-4 sm:px-6 lg:px-8">
<div className="mx-auto mb-12 md:mb-24 max-w-4xl text-center">
<motion.div
initial={{ opacity: 0, y: 20 }}
whileInView={{ opacity: 1, y: 0 }}
viewport={{ once: true }}
transition={{
duration: 0.6,
ease: [0.21, 0.45, 0.27, 0.9],
}}>
<h2 className="text-4xl font-bold tracking-tight sm:text-5xl">
Power and flexibility to get stuff done.
</h2>
<p className="mt-6 text-lg text-muted-foreground">
The features you need to build, debug and ship faster – without compromising quality.
</p>
</motion.div>
</div>
<motion.div
className="relative mx-auto md:max-w-[1200px]"
variants={containerVariants}
initial="hidden"
whileInView="visible"
viewport={{ once: true }}>
<ul className="grid grid-cols-1 place-items-center gap-6 md:grid-cols-2 lg:grid-cols-3 lg:gap-8">
{features.map((feature, index) => {
const Icon = feature.icon
return (
<li
key={index}
className="relative h-full border border-border rounded-2xl bg-background p-8 transition-all duration-300">
<Icon className="size-6 text-foreground/80" />
<h3 className="mb-3 mt-3 text-xl font-semibold text-foreground">{feature.title}</h3>
<p className="leading-relaxed font-light text-muted-foreground">
{feature.description}
</p>
{feature.logos && (
<div className="mt-4 flex flex-wrap items-center gap-4">
{feature.logos.map((logo) => (
<Image
key={logo}
width={20}
height={20}
className="w-5 h-5 overflow-clip opacity-50 dark:invert"
src={`/logos/${logo.toLowerCase()}.svg`}
alt={`${logo} Logo`}
/>
))}
</div>
)}
</li>
)
})}
</ul>
</motion.div>
</div>
</section>
)
}