|
|
@@ -86,7 +86,7 @@ export function AppSidebar() {
|
|
|
isActive ? 'bg-cyan-500 text-white hover:bg-cyan-600' : ''
|
|
|
}`}
|
|
|
>
|
|
|
- <a onClick={() => {navigate(item.url)}} className="flex items-center gap-3 px-3 py-2 rounded-lg">
|
|
|
+ <a onClick={() => {navigate(item.url)}} className="flex items-center gap-3 px-3 py-2 rounded-lg cursor-pointer">
|
|
|
<item.icon className="w-4 h-4" />
|
|
|
<span>{item.title}</span>
|
|
|
</a>
|
|
|
@@ -114,7 +114,7 @@ export function AppSidebar() {
|
|
|
isActive ? 'bg-cyan-500 text-white hover:bg-cyan-600' : ''
|
|
|
}`}
|
|
|
>
|
|
|
- <a onClick={() => {navigate(item.url)}} className="flex items-center gap-3 px-3 py-2 rounded-lg">
|
|
|
+ <a onClick={() => {navigate(item.url)}} className="flex items-center gap-3 px-3 py-2 rounded-lg cursor-pointer">
|
|
|
<item.icon className="w-4 h-4" />
|
|
|
<span>{item.title}</span>
|
|
|
</a>
|