"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/lib/utils"; export const SETTINGS_TABS = [ { href: "/dashboard/settings", label: "Profile", exact: true }, { href: "/dashboard/settings/security", label: "Security" }, { href: "/dashboard/settings/audit", label: "Audit log" }, { href: "/dashboard/settings/legal", label: "Legal" }, ] as const; export function SettingsNav() { const pathname = usePathname(); return ( ); }