lots of changes
This commit is contained in:
@@ -24,8 +24,8 @@ export function Sidebar({ productName }: SidebarProps) {
|
||||
{
|
||||
label: 'Overview',
|
||||
icon: LayoutDashboard,
|
||||
href: '/dashboard',
|
||||
active: pathname === '/dashboard',
|
||||
href: '/app/dashboard',
|
||||
active: pathname === '/app/dashboard',
|
||||
},
|
||||
]
|
||||
|
||||
@@ -68,10 +68,10 @@ export function Sidebar({ productName }: SidebarProps) {
|
||||
</Link>
|
||||
))}
|
||||
<Link
|
||||
href="/opportunities"
|
||||
href="/app/search"
|
||||
className={cn(
|
||||
'flex items-center gap-3 rounded-md px-3 py-2 text-sm font-medium transition-colors',
|
||||
pathname === '/opportunities'
|
||||
pathname === '/app/search'
|
||||
? 'bg-primary text-primary-foreground'
|
||||
: 'text-muted-foreground hover:bg-muted hover:text-foreground'
|
||||
)}
|
||||
@@ -80,10 +80,10 @@ export function Sidebar({ productName }: SidebarProps) {
|
||||
Search
|
||||
</Link>
|
||||
<Link
|
||||
href="/leads"
|
||||
href="/app/inbox"
|
||||
className={cn(
|
||||
'flex items-center rounded-md px-3 py-2 pl-9 text-sm font-medium transition-colors',
|
||||
pathname === '/leads'
|
||||
pathname === '/app/inbox'
|
||||
? 'bg-primary text-primary-foreground'
|
||||
: 'text-muted-foreground hover:bg-muted hover:text-foreground'
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user