diff --git a/apps/app/app/(authenticated)/components/sidebar.tsx b/apps/app/app/(authenticated)/components/sidebar.tsx index 2461663cf..24f7bd8e9 100644 --- a/apps/app/app/(authenticated)/components/sidebar.tsx +++ b/apps/app/app/(authenticated)/components/sidebar.tsx @@ -54,6 +54,7 @@ import { } from 'lucide-react'; import type { ReactNode } from 'react'; import { Search } from './search'; +import Link from 'next/link'; type GlobalSidebarProperties = { readonly children: ReactNode; @@ -224,10 +225,10 @@ export const GlobalSidebar = ({ children }: GlobalSidebarProperties) => { > - + {item.title} - + {item.items?.length ? ( <> @@ -242,9 +243,9 @@ export const GlobalSidebar = ({ children }: GlobalSidebarProperties) => { {item.items?.map((subItem) => ( - + {subItem.title} - + ))} @@ -263,10 +264,10 @@ export const GlobalSidebar = ({ children }: GlobalSidebarProperties) => { {data.projects.map((item) => ( - + {item.name} - + @@ -311,10 +312,10 @@ export const GlobalSidebar = ({ children }: GlobalSidebarProperties) => { {data.navSecondary.map((item) => ( - + {item.title} - + ))}