Skip to content

Commit d88c6ad

Browse files
committed
feat(sidebar): add Profile navigation item to sidebar
1 parent 95c2b97 commit d88c6ad

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

components/dashboard/sidebar.tsx

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33
import Link from 'next/link'
44
import { usePathname } from 'next/navigation'
5-
import {
6-
LayoutDashboard,
7-
FileText,
8-
AlertCircle,
5+
import {
6+
LayoutDashboard,
7+
FileText,
8+
AlertCircle,
99
LogOut,
1010
ChevronRight,
11+
UserCircle,
1112
} from 'lucide-react'
1213
import { Button } from '@/components/ui/button'
1314
import { cn } from '@/lib/utils'
@@ -33,6 +34,11 @@ const navItems = [
3334
href: '/dashboard/disputes',
3435
icon: AlertCircle,
3536
},
37+
{
38+
label: 'Profile',
39+
href: '/dashboard/profile',
40+
icon: UserCircle,
41+
},
3642
]
3743

3844
export function Sidebar({ open, onOpenChange }: SidebarProps) {

0 commit comments

Comments
 (0)