Skip to content
This repository was archived by the owner on May 15, 2026. It is now read-only.

Commit c94290b

Browse files
committed
Visual tweaks
1 parent 0bf55cf commit c94290b

3 files changed

Lines changed: 16 additions & 21 deletions

File tree

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

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -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
})}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ export default function PricingPage() {
183183
<Link
184184
href={tier.learnMoreLink}
185185
className="text-sm text-violet-600 dark:text-violet-400 hover:underline">
186-
Learn more about the Team plan
186+
Learn more →
187187
</Link>
188188
</div>
189189
)}

apps/web-roo-code/src/components/chromes/nav-bar.tsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,6 @@ export function NavBar({ stars, downloads }: NavBarProps) {
7070
</button>
7171
{/* Dropdown Menu */}
7272
<div className="absolute left-0 top-12 mt-2 w-40 rounded-md border border-border bg-background py-1 shadow-lg opacity-0 -translate-y-2 pointer-events-none group-hover:opacity-100 group-hover:translate-y-0 group-hover:pointer-events-auto transition-all duration-200">
73-
<ScrollButton
74-
targetId="faq"
75-
className="block px-4 py-2 text-sm transition-colors hover:bg-accent hover:text-foreground">
76-
FAQ
77-
</ScrollButton>
7873
<Link
7974
href="/evals"
8075
className="block px-4 py-2 text-sm transition-colors hover:bg-accent hover:text-foreground">

0 commit comments

Comments
 (0)