Skip to content

Commit b22fdf4

Browse files
committed
fix(web): match Roomote banner to actual roomote.dev lime green branding
1 parent c652608 commit b22fdf4

3 files changed

Lines changed: 10 additions & 24 deletions

File tree

apps/web-roo-code/src/app/globals.css

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,3 @@
7070
@apply bg-background text-foreground;
7171
}
7272
}
73-
74-
@keyframes banner-shimmer {
75-
0% {
76-
background-position: 200% 0;
77-
}
78-
100% {
79-
background-position: -200% 0;
80-
}
81-
}

apps/web-roo-code/src/components/RoomoteAnnouncementBanner.tsx

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,26 @@
11
"use client"
22

3-
import { ArrowRight, Sparkles } from "lucide-react"
3+
import { ArrowRight } from "lucide-react"
44

55
export function RoomoteAnnouncementBanner() {
66
return (
7-
<div className="relative overflow-hidden bg-gradient-to-r from-violet-700 via-purple-600 to-violet-700 text-white">
8-
{/* Animated shimmer overlay */}
9-
<div className="pointer-events-none absolute inset-0 bg-[length:200%_100%] animate-banner-shimmer bg-gradient-to-r from-transparent via-white/10 to-transparent" />
10-
11-
<div className="relative flex flex-col sm:flex-row items-center justify-center gap-3 sm:gap-4 px-4 py-3 sm:py-4">
12-
<div className="flex items-center gap-2">
13-
<span className="inline-flex items-center gap-1.5 rounded-full bg-white/20 backdrop-blur-sm px-3 py-1 text-xs font-semibold uppercase tracking-wider">
14-
<Sparkles className="size-3.5" />
7+
<div className="relative overflow-hidden bg-[#c8f525] text-black">
8+
<div className="relative flex flex-col sm:flex-row items-center justify-center gap-3 sm:gap-5 px-4 py-3.5 sm:py-4">
9+
<div className="flex items-center gap-3">
10+
<span className="inline-flex items-center rounded-full bg-black text-[#c8f525] px-3 py-1 text-xs font-bold uppercase tracking-wider">
1511
New
1612
</span>
17-
<p className="text-sm sm:text-base font-medium">
18-
Introducing <span className="font-bold">Roomote</span>AI-powered coding, now in Slack
13+
<p className="text-sm sm:text-base font-bold tracking-tight">
14+
Introducing Roomote — the always-on engineer for your entire team
1915
</p>
2016
</div>
2117
<a
2218
href="https://roomote.dev"
2319
target="_blank"
2420
rel="noopener noreferrer"
25-
className="group inline-flex items-center gap-1.5 rounded-full bg-white text-violet-700 px-5 py-2 text-sm font-bold shadow-lg shadow-violet-900/30 hover:bg-violet-50 hover:shadow-violet-900/40 transition-all duration-300">
26-
Explore Roomote
27-
<ArrowRight className="size-4 transition-transform duration-300 group-hover:translate-x-0.5" />
21+
className="group inline-flex items-center gap-1.5 rounded-full bg-black text-white px-5 py-2 text-sm font-bold hover:bg-gray-900 transition-colors duration-200">
22+
Learn more
23+
<ArrowRight className="size-4 transition-transform duration-200 group-hover:translate-x-0.5" />
2824
</a>
2925
</div>
3026
</div>

apps/web-roo-code/tailwind.config.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ const config: Config = {
106106
"fade-in": "fade-in 0.5s ease-out",
107107
"fade-out": "fade-out 0.5s ease-out",
108108
"pulse-glow": "pulse-glow 3s infinite",
109-
"banner-shimmer": "banner-shimmer 3s ease-in-out infinite",
110109
},
111110
screens: {
112111
xs: "420px",

0 commit comments

Comments
 (0)