"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; import { buttonVariants } from "@/components/ui/button"; interface SettingsNavProps extends React.HTMLAttributes { items: { href: string; title: string; }[]; } export function SettingsNav({ className, items, ...props }: SettingsNavProps) { const pathname = usePathname(); return ( ); }