feat: integrate i18n for multilingual support in Services page

- Added i18n configuration in src/i18n.ts for English and Dutch translations.
- Created locale files for English (en.json) and Dutch (nl.json) with translations for various sections.
- Updated Services component to utilize translation keys for titles, descriptions, and items.
- Refactored process steps in Services component to be dynamically rendered from translation keys.
- Adjusted main.tsx to include i18n initialization.
This commit is contained in:
Dan Dobos
2026-02-23 13:04:13 +01:00
parent 2fed4212c7
commit 8954081593
14 changed files with 1380 additions and 331 deletions
+46
View File
@@ -0,0 +1,46 @@
import { useTranslation } from "react-i18next";
function FlagGB() {
return (
<svg viewBox="0 0 60 30" aria-hidden="true" className="h-4 w-6">
<clipPath id="t"><path d="M0 0h60v30H0z" /></clipPath>
<g clipPath="url(#t)">
<path d="M0 0v30h60V0z" fill="#012169" />
<path d="M0 0l60 30m0-30L0 30" stroke="#fff" strokeWidth="6" />
<path d="M0 0l60 30m0-30L0 30" stroke="#C8102E" strokeWidth="4" />
<path d="M30 0v30M0 15h60" stroke="#fff" strokeWidth="10" />
<path d="M30 0v30M0 15h60" stroke="#C8102E" strokeWidth="6" />
</g>
</svg>
);
}
function FlagNL() {
return (
<svg viewBox="0 0 3 2" aria-hidden="true" className="h-4 w-6">
<rect width="3" height="2" fill="#fff" />
<rect width="3" height="0.6667" y="0" fill="#AE1C28" />
<rect width="3" height="0.6667" y="1.3333" fill="#21468B" />
</svg>
);
}
export function LanguageSwitcher() {
const { i18n, t } = useTranslation();
const current = i18n.language === "nl" ? "nl" : "en";
const other = current === "en" ? "nl" : "en";
const setLang = (lng: "en" | "nl") => i18n.changeLanguage(lng);
return (
<button
type="button"
onClick={() => setLang(other as "en" | "nl")}
aria-label={t("header.language")}
className="flex items-center gap-1 bg-white px-2 py-1 text-sm hover:bg-gray-50"
>
{other === "en" ? <FlagGB /> : <FlagNL />}
</button>
);
}