From 341122685b99593b52aa94498660dcb1cd88481b Mon Sep 17 00:00:00 2001 From: Benjamin Frost Date: Mon, 28 Oct 2024 15:01:16 +0100 Subject: [PATCH] fix: registration links --- src/components/skill/SkillInformation.astro | 17 +++++++++++++---- src/components/skill/SkillRoadmap.astro | 6 +++--- src/layouts/SkillPage.astro | 2 +- src/pages/en/index.astro | 2 +- src/pages/index.astro | 2 +- 5 files changed, 19 insertions(+), 10 deletions(-) diff --git a/src/components/skill/SkillInformation.astro b/src/components/skill/SkillInformation.astro index 3bccb7b..3cd1969 100644 --- a/src/components/skill/SkillInformation.astro +++ b/src/components/skill/SkillInformation.astro @@ -1,5 +1,7 @@ --- +import { getRelativeLocaleUrl } from "astro:i18n"; import { getLangFromUrl, useTranslations } from "~/i18n"; +import Link from "../Link.astro"; import Headline from "../typography/Headline.astro"; interface Props { @@ -31,10 +33,17 @@ const t = useTranslations(lang); }

- +

+ { + t({ + de: "Du bist interessiert?", + en: "You are interested?", + }) + } + + {t({ de: "Jetzt bewerben!", en: "Apply now!" })} + +