lots of changes

This commit is contained in:
2026-02-04 11:18:33 +00:00
parent d02d95e680
commit 4fdbfb0fb3
30 changed files with 1796 additions and 822 deletions

View File

@@ -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'
)}