Skip to content

Commit 0920817

Browse files
committed
feat(web): use Roomote logo in banner CTA button
1 parent 15ad706 commit 0920817

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

230 KB
Loading

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"use client"
22

3+
import Image from "next/image"
34
import { ArrowRight } from "lucide-react"
45

56
export function RoomoteAnnouncementBanner() {
@@ -19,7 +20,14 @@ export function RoomoteAnnouncementBanner() {
1920
target="_blank"
2021
rel="noopener noreferrer"
2122
className="group inline-flex shrink-0 items-center gap-2 rounded-full bg-black text-white px-6 py-2.5 text-sm sm:text-base font-bold hover:bg-gray-900 transition-colors duration-200">
22-
Check out Roomote
23+
Check out
24+
<Image
25+
src="/logos/roomote-logo.png"
26+
alt="Roomote"
27+
width={100}
28+
height={37}
29+
className="h-5 sm:h-6 w-auto invert"
30+
/>
2331
<ArrowRight className="size-4 sm:size-5 transition-transform duration-200 group-hover:translate-x-0.5" />
2432
</a>
2533
</div>

0 commit comments

Comments
 (0)