"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { localeLabels, locales, localizePath } from "@/translations/config"; import { useI18n } from "@/translations/provider"; export default function LanguageSwitcher() { const pathname = usePathname(); const { locale } = useI18n(); return ( ); }