From 176cf0279725a67209a2eea4a17a145675335d48 Mon Sep 17 00:00:00 2001 From: Benjamin Frost Date: Sat, 19 Oct 2024 20:01:54 +0200 Subject: [PATCH] fix: skill 17 english name in dropdown --- src/components/Header.astro | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/Header.astro b/src/components/Header.astro index de33c50..194bc5a 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -19,7 +19,10 @@ const skills = [ href: getRelativeLocaleUrl(lang, "it-software-solutions-for-business"), }, { - name: "Web-Entwicklung", + name: t({ + de: "Web-Entwicklung", + en: "Web Technologies" + }), href: getRelativeLocaleUrl(lang, "web-technologies"), }, ];