@@ -232,28 +232,28 @@ export default function CloudTeamPage() {
232232
233233 < div className = "mx-auto mb-12 md:mb-24 max-w-5xl text-center" >
234234 < div >
235- < h2 className = "text-3xl font-bold tracking-tight sm:text-5xl mb-4" > Why Teams Choose Roo</ h2 >
235+ < h2 className = "text-4xl font-bold tracking-tight mb-4" > Why Teams Choose Roo</ h2 >
236236 < p className = "text-xl text-muted-foreground max-w-2xl mx-auto" >
237237 Streamline collaboration and scale your development capacity with team-first features.
238238 </ p >
239239 </ div >
240240 </ div >
241241
242242 < div className = "relative mx-auto md:max-w-[1200px]" >
243- < ul className = "grid grid-cols-1 place-items-center gap-6 md:grid-cols-2 lg:grid-cols-3 lg:gap-8 " >
243+ < ul className = "grid grid-cols-1 place-items-center gap-6 md:grid-cols-2 lg:grid-cols-3 lg:gap-6 " >
244244 { keyBenefits . map ( ( benefit , index ) => {
245245 const Icon = benefit . icon
246246 return (
247247 < li
248248 key = { index }
249- className = "relative h-full w-full border border -border rounded-2xl bg-background p-8 transition-all duration-300 hover:shadow-lg " >
249+ className = "rounded-3xl bg-card outline outline -border/50 hover:outline-8 shadow-xl p-8 h-full w-full group transition-all hover:shadow-2xl hover:shadow-violet-800/30 relative " >
250250 { Icon && (
251- < div className = "bg-violet-100 dark:bg-violet-900/20 w-12 h-12 rounded-lg flex items-center justify-center mb-4 " >
252- < Icon className = "size-6 text-violet-600 dark:text-violet-400 " />
251+ < div className = "size-15 p-3 rounded-full flex items-center justify-center shadow-lg absolute -top-4 -right-2 transition-all outline outline-foreground/5 bg-card group-hover:outline-3 group-hover:scale-105 " >
252+ < Icon className = "size-5 text-violet-500 " />
253253 </ div >
254254 ) }
255- < h3 className = "mb-3 text-xl font-semibold text-foreground " > { benefit . title } </ h3 >
256- < div className = "leading-relaxed font-light text-muted-foreground" >
255+ < h3 className = "text-xl font-bold tracking-tight mb-2 " > { benefit . title } </ h3 >
256+ < div className = "text-sm text-muted-foreground leading-relaxed " >
257257 { benefit . description }
258258 </ div >
259259 </ li >
@@ -271,24 +271,24 @@ export default function CloudTeamPage() {
271271 < div className = "absolute left-1/2 top-1/2 h-[800px] w-full -translate-x-1/2 -translate-y-1/2 rounded-full bg-violet-500/10 dark:bg-violet-700/20 blur-[140px]" />
272272 </ div >
273273 < div className = "text-center mb-16" >
274- < h2 className = "text-3xl font-bold tracking-tight sm:text-4xl mb-4" > Complete Team Management</ h2 >
274+ < h2 className = "text-4xl font-bold tracking-tight mb-4" > Complete Team Management</ h2 >
275275 < p className = "text-xl text-muted-foreground max-w-2xl mx-auto" >
276276 Access all capabilities from your Organization Settings. Everything you need to manage your
277277 team in one place.
278278 </ p >
279279 </ div >
280- < div className = "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 max-w-6xl mx-auto relative" >
280+ < div className = "grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 max-w-6xl mx-auto relative" >
281281 { features . map ( ( feature , index ) => {
282282 const Icon = feature . icon
283283 return (
284284 < div
285285 key = { index }
286- className = "bg-background p-8 rounded-2xl border border-border hover:shadow-lg transition-all duration-300" >
287- < div className = "bg-violet-100 dark:bg-violet-900/20 w-12 h-12 rounded-lg flex items-center justify-center mb-6" >
288- < Icon className = "size-6 text-violet-600 dark: text-violet-400" / >
289- </ div >
290- < h3 className = "text-xl font-semibold mb-3" > { feature . title } </ h3 >
291- < p className = "text-muted-foreground leading-relaxed" > { feature . description } < /p >
286+ className = "relative h-full border border-border rounded-2xl bg-background p-8 transition-all duration-300" >
287+ < Icon className = "size-6 text-foreground/80" / >
288+ < h3 className = "mb-3 mt-3 text-xl font-semibold text-foreground" > { feature . title } </ h3 >
289+ < p className = "leading-relaxed font-light text-muted-foreground" >
290+ { feature . description }
291+ </ p >
292292 </ div >
293293 )
294294 } ) }
0 commit comments