Skip to content

Commit db83b91

Browse files
committed
feat: update navigation with Docs rename and Cloud signup pill
1 parent df6c57d commit db83b91

File tree

1 file changed

+25
-2
lines changed

1 file changed

+25
-2
lines changed

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

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,25 @@ export function NavBar({ stars, downloads }: NavBarProps) {
7272
href={EXTERNAL_LINKS.DOCUMENTATION}
7373
target="_blank"
7474
className="text-muted-foreground transition-transform duration-200 hover:scale-105 hover:text-foreground">
75-
Documentation
75+
Docs
7676
</a>
7777
<a
7878
href={EXTERNAL_LINKS.CAREERS}
7979
target="_blank"
8080
className="text-muted-foreground transition-transform duration-200 hover:scale-105 hover:text-foreground">
8181
Careers
8282
</a>
83+
<div className="flex items-center rounded-full bg-muted/50 px-3 py-1.5 text-sm">
84+
<span className="text-muted-foreground">Roo Code Cloud is coming</span>
85+
<span className="mx-1.5 text-muted-foreground">&middot;</span>
86+
<a
87+
href="https://shard-dogwood-daf.notion.site/238fd1401b0a8087b858e1ad431507cf?pvs=105"
88+
target="_blank"
89+
rel="noopener noreferrer"
90+
className="font-medium text-primary hover:underline">
91+
Sign up
92+
</a>
93+
</div>
8394
</nav>
8495

8596
<div className="hidden md:flex md:items-center md:space-x-4">
@@ -162,7 +173,7 @@ export function NavBar({ stars, downloads }: NavBarProps) {
162173
target="_blank"
163174
className="w-full px-8 py-3 text-left text-sm font-medium text-foreground/80 transition-colors hover:bg-accent hover:text-foreground"
164175
onClick={() => setIsMenuOpen(false)}>
165-
Documentation
176+
Docs
166177
</a>
167178
<a
168179
href={EXTERNAL_LINKS.CAREERS}
@@ -171,6 +182,18 @@ export function NavBar({ stars, downloads }: NavBarProps) {
171182
onClick={() => setIsMenuOpen(false)}>
172183
Careers
173184
</a>
185+
<div className="mx-8 my-3 flex items-center rounded-full bg-muted/50 px-3 py-1.5 text-sm">
186+
<span className="text-foreground/80">Roo Code Cloud is coming</span>
187+
<span className="mx-1.5 text-foreground/80">&middot;</span>
188+
<a
189+
href="https://shard-dogwood-daf.notion.site/238fd1401b0a8087b858e1ad431507cf?pvs=105"
190+
target="_blank"
191+
rel="noopener noreferrer"
192+
className="font-medium text-primary hover:underline"
193+
onClick={() => setIsMenuOpen(false)}>
194+
Sign up
195+
</a>
196+
</div>
174197

175198
<hr className="mx-8 my-2 border-t border-border/50" />
176199

0 commit comments

Comments
 (0)