"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { signOut } from "next-auth/react"; import { LayoutDashboard, Monitor, Bookmark, LogOut, Home } from "lucide-react"; const NAV = [ { href: "/", icon: LayoutDashboard, label: "Dashboard" }, { href: "/system", icon: Monitor, label: "System" }, { href: "/bookmarks", icon: Bookmark, label: "Bookmarks" }, ]; export function Sidebar() { const pathname = usePathname(); return ( ); }