import Link from "next/link"; import { Badge } from "@/components/ui/badge"; export type DropdownLinkItem = { href: string; label: string; icon: React.ReactNode; badge?: number; }; type DropdownLinkListProps = { items: DropdownLinkItem[]; }; export function DropdownLinkList({ items }: DropdownLinkListProps) { return (