"use client"; import LogoutButton from "@/components/ui/LogoutButton"; import { FileText } from "lucide-react"; import Link from "next/link"; import { usePathname } from "next/navigation"; export default function Sidebar() { const pathname = usePathname(); const navItems = [ { label: "My Pastes", href: "/dashboard", icon: FileText }, ]; return ( ); }