From 71047c85cc5ce4e8173970c69b15ddb83880166b Mon Sep 17 00:00:00 2001 From: Andrei Date: Fri, 10 Oct 2025 18:18:38 +0000 Subject: [PATCH] feat: add Spanish and Italian to language switcher MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added Spanish (es) and Italian (it) languages to the navigation language switcher: - Added Español 🇪🇸 to language dropdown - Added Italiano 🇮🇹 to language dropdown - Reordered languages alphabetically (EN, RO, ES, IT) Users can now switch to Spanish and Italian from the header navigation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- components/layout/language-switcher.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/layout/language-switcher.tsx b/components/layout/language-switcher.tsx index 930b404..fac9fec 100644 --- a/components/layout/language-switcher.tsx +++ b/components/layout/language-switcher.tsx @@ -14,8 +14,10 @@ import { import { Language, Check } from '@mui/icons-material' const languages = [ - { code: 'ro', name: 'Română', flag: '🇷🇴' }, { code: 'en', name: 'English', flag: '🇺🇸' }, + { code: 'ro', name: 'Română', flag: '🇷🇴' }, + { code: 'es', name: 'Español', flag: '🇪🇸' }, + { code: 'it', name: 'Italiano', flag: '🇮🇹' }, ] export function LanguageSwitcher() {