"use client"; import Link from "next/link"; import Image from "next/image"; import { usePathname } from "next/navigation"; import { LayoutDashboard, HeartPulse, Users, BarChart3, Brain, Settings, } from "lucide-react"; import { useT } from "@/i18n/context"; import { cn } from "@/lib/utils"; export function Sidebar() { const { dict, locale } = useT(); const pathname = usePathname(); const items = [ { href: "", label: dict.nav.dashboard, icon: LayoutDashboard }, { href: "new-evaluation", label: dict.nav.newEvaluation, icon: HeartPulse }, { href: "patients", label: dict.nav.patients, icon: Users }, { href: "eda", label: dict.nav.eda, icon: BarChart3 }, { href: "model", label: dict.nav.model, icon: Brain }, { href: "settings", label: dict.nav.settings, icon: Settings }, ]; return ( ); }