"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { LayoutDashboard, Book, CheckSquare, MessageCircle, Settings, BrainCircuit } from "lucide-react"; import { cn } from "@/lib/utils"; const routes = [ { name: "Dashboard", path: "/", icon: LayoutDashboard }, { name: "Günlük", path: "/journal", icon: Book }, { name: "Görevler", path: "/tasks", icon: CheckSquare }, { name: "Sohbet", path: "/chat", icon: MessageCircle }, { name: "Ayarlar", path: "/settings", icon: Settings }, ]; export function Sidebar() { const pathname = usePathname(); return ( ); }