Skip to content

feat: update navigation with Docs rename and Cloud signup pill #6064

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 25 additions & 2 deletions apps/web-roo-code/src/components/chromes/nav-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,25 @@ export function NavBar({ stars, downloads }: NavBarProps) {
href={EXTERNAL_LINKS.DOCUMENTATION}
target="_blank"
className="text-muted-foreground transition-transform duration-200 hover:scale-105 hover:text-foreground">
Documentation
Docs
</a>
<a
href={EXTERNAL_LINKS.CAREERS}
target="_blank"
className="text-muted-foreground transition-transform duration-200 hover:scale-105 hover:text-foreground">
Careers
</a>
<div className="flex items-center rounded-full bg-muted/50 px-3 py-1.5 text-sm">
<span className="text-muted-foreground">Roo Code Cloud is coming</span>
<span className="mx-1.5 text-muted-foreground">&middot;</span>
<a
href="https://shard-dogwood-daf.notion.site/238fd1401b0a8087b858e1ad431507cf?pvs=105"
target="_blank"
rel="noopener noreferrer"
className="font-medium text-primary hover:underline">
Sign up
</a>
</div>
</nav>

<div className="hidden md:flex md:items-center md:space-x-4">
Expand Down Expand Up @@ -162,7 +173,7 @@ export function NavBar({ stars, downloads }: NavBarProps) {
target="_blank"
className="w-full px-8 py-3 text-left text-sm font-medium text-foreground/80 transition-colors hover:bg-accent hover:text-foreground"
onClick={() => setIsMenuOpen(false)}>
Documentation
Docs
</a>
<a
href={EXTERNAL_LINKS.CAREERS}
Expand All @@ -171,6 +182,18 @@ export function NavBar({ stars, downloads }: NavBarProps) {
onClick={() => setIsMenuOpen(false)}>
Careers
</a>
<div className="mx-8 my-3 flex items-center rounded-full bg-muted/50 px-3 py-1.5 text-sm">
<span className="text-foreground/80">Roo Code Cloud is coming</span>
<span className="mx-1.5 text-foreground/80">&middot;</span>
<a
href="https://shard-dogwood-daf.notion.site/238fd1401b0a8087b858e1ad431507cf?pvs=105"
target="_blank"
rel="noopener noreferrer"
className="font-medium text-primary hover:underline"
onClick={() => setIsMenuOpen(false)}>
Sign up
</a>
</div>

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

Expand Down
Loading