"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { User, Shield } from "lucide-react"; import { cn } from "@/lib/utils"; const navItems = [ { href: "/settings", label: "Profile", icon: User }, { href: "/settings/account", label: "Account", icon: Shield }, ]; export function SettingsNav() { const pathname = usePathname(); return ( ); }