'use client' import { useLocale } from 'next-intl' import { usePathname, useRouter } from '@/i18n/navigation' import { routing } from '@/i18n/routing' const LABELS: Record = { es: 'ES', en: 'EN' } export function LanguageSwitcher() { const locale = useLocale() const pathname = usePathname() // sin prefijo de idioma const router = useRouter() return ( ) }