There was an error while loading. Please reload this page.
1 parent 95c2b97 commit d88c6adCopy full SHA for d88c6ad
1 file changed
components/dashboard/sidebar.tsx
@@ -2,12 +2,13 @@
2
3
import Link from 'next/link'
4
import { usePathname } from 'next/navigation'
5
-import {
6
- LayoutDashboard,
7
- FileText,
8
- AlertCircle,
+import {
+ LayoutDashboard,
+ FileText,
+ AlertCircle,
9
LogOut,
10
ChevronRight,
11
+ UserCircle,
12
} from 'lucide-react'
13
import { Button } from '@/components/ui/button'
14
import { cn } from '@/lib/utils'
@@ -33,6 +34,11 @@ const navItems = [
33
34
href: '/dashboard/disputes',
35
icon: AlertCircle,
36
},
37
+ {
38
+ label: 'Profile',
39
+ href: '/dashboard/profile',
40
+ icon: UserCircle,
41
+ },
42
]
43
44
export function Sidebar({ open, onOpenChange }: SidebarProps) {
0 commit comments