import Link from "next/link"; import { LOCALES, type Locale } from "@/lib/i18n"; type LanguageSwitcherProps = { locale: Locale; path?: string; }; const LABELS: Record = { it: "Italiano", en: "English", es: "Espanol", }; export function LanguageSwitcher({ locale, path = "" }: LanguageSwitcherProps) { return ( ); }