'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { t } from '@/i18n'; import { cn } from '@/lib/cn'; export function NavLinks({ items }: { items: Array<{ href: string; label: string }> }) { const pathname = usePathname(); return ( ); }