|
1 | 1 | "use client" |
2 | 2 |
|
3 | | -import { ArrowRight, Sparkles } from "lucide-react" |
| 3 | +import { ArrowRight } from "lucide-react" |
4 | 4 |
|
5 | 5 | export function RoomoteAnnouncementBanner() { |
6 | 6 | 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"> |
15 | 11 | New |
16 | 12 | </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 |
19 | 15 | </p> |
20 | 16 | </div> |
21 | 17 | <a |
22 | 18 | href="https://roomote.dev" |
23 | 19 | target="_blank" |
24 | 20 | 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" /> |
28 | 24 | </a> |
29 | 25 | </div> |
30 | 26 | </div> |
|
0 commit comments