"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; const navItems = [ { href: "/dashboard", label: "Overview" }, { href: "/dashboard/profile", label: "Profile" }, { href: "/dashboard/payment-methods", label: "Payment Methods" }, { href: "/dashboard/social-links", label: "Social Links" } ]; type SidebarProps = { username?: string; }; export function Sidebar({ username }: SidebarProps) { const pathname = usePathname(); return ( ); }