Skip to content

Commit 2dbaab1

Browse files
committed
Hide agent store from navbar
1 parent 871a8bd commit 2dbaab1

File tree

1 file changed

+0
-20
lines changed

1 file changed

+0
-20
lines changed

web/src/components/navbar/navbar.tsx

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import {
66
LogIn,
77
BarChart2,
88
BookHeart,
9-
Bot,
109
} from 'lucide-react'
1110
import Image from 'next/image'
1211
import Link from 'next/link'
@@ -69,15 +68,6 @@ export const Navbar = () => {
6968
<span className="relative z-10">GitHub</span>
7069
<span className="pointer-events-none absolute inset-0 rounded-md bg-gradient-to-r from-blue-500/0 via-blue-500/5 to-purple-500/0 opacity-0 group-hover:opacity-100 transition-opacity duration-300" />
7170
</Link>
72-
<Link
73-
href="/store"
74-
className="relative font-medium px-3 py-2 rounded-md transition-all duration-200 hover:bg-accent hover:text-accent-foreground flex items-center gap-2 group"
75-
>
76-
<Bot className="h-4 w-4 transition-transform duration-200 group-hover:scale-110" />
77-
<span className="relative z-10">Agent Store</span>
78-
<span className="pointer-events-none absolute inset-0 rounded-md bg-gradient-to-r from-blue-500/0 via-blue-500/5 to-purple-500/0 opacity-0 group-hover:opacity-100 transition-opacity duration-300" />
79-
</Link>
80-
8171
{/* Only show Usage link when session is ready and user is authenticated */}
8272
{status !== 'loading' && session && (
8373
<Link
@@ -134,16 +124,6 @@ export const Navbar = () => {
134124
<span>GitHub</span>
135125
</Link>
136126
</DropdownMenuItem>
137-
<DropdownMenuItem asChild>
138-
<Link
139-
href="/store"
140-
className="flex items-center cursor-pointer transition-colors"
141-
>
142-
<Bot className="mr-2 h-4 w-4" />
143-
<span>Agent Store</span>
144-
</Link>
145-
</DropdownMenuItem>
146-
147127
{/* Only show Usage and Login links when session is ready */}
148128
{status !== 'loading' && session && (
149129
<DropdownMenuItem asChild>

0 commit comments

Comments
 (0)