feat(sp6): /inbox route + sidebar nav link
This commit is contained in:
@@ -4,6 +4,7 @@ import {
|
||||
CheckCircle2,
|
||||
GitCompareArrows,
|
||||
GitMerge,
|
||||
Inbox as InboxIcon,
|
||||
Layers,
|
||||
LayoutDashboard,
|
||||
Receipt,
|
||||
@@ -102,6 +103,22 @@ export function Sidebar() {
|
||||
)}
|
||||
</NavLink>
|
||||
</li>
|
||||
<li>
|
||||
<NavLink
|
||||
to="/inbox"
|
||||
className={({ isActive }) =>
|
||||
cn(
|
||||
"group relative flex items-center gap-3 rounded-md px-3 py-2 text-sm font-medium transition-colors",
|
||||
isActive
|
||||
? "nav-active"
|
||||
: "text-muted-foreground hover:text-foreground hover:bg-muted/40"
|
||||
)
|
||||
}
|
||||
>
|
||||
<InboxIcon className="h-4 w-4" strokeWidth={1.5} />
|
||||
<span>Inbox</span>
|
||||
</NavLink>
|
||||
</li>
|
||||
<li>
|
||||
<NavLink
|
||||
to="/acks"
|
||||
|
||||
Reference in New Issue
Block a user