diff --git a/components/navigation/app-navigation.tsx b/components/navigation/app-navigation.tsx index a4a6b59..9c5c7df 100644 --- a/components/navigation/app-navigation.tsx +++ b/components/navigation/app-navigation.tsx @@ -17,16 +17,21 @@ import { Brain, Search, AlertTriangle, + ChevronDown, } from 'lucide-react'; import { NavigationMenu, - NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, - NavigationMenuTrigger, navigationMenuTriggerStyle, } from '@/components/ui/navigation-menu'; +import { + DropdownMenu, + DropdownMenuContent, + DropdownMenuItem, + DropdownMenuTrigger, +} from '@/components/ui/dropdown-menu'; import { Button } from '@/components/ui/button'; import { ThemeToggle } from '@/components/theme-toggle'; import { StatusIndicator } from '@/components/navigation/status-indicator'; @@ -242,57 +247,57 @@ export function AppNavigation() { return ( {item.children ? ( - <> - - {item.icon && } - {item.title} - - - - - + /> + )} +
+
+ {child.title} +
+ {child.description && ( +

+ {child.description} +

+ )} +
+ + + ); + })} + + ) : (