Skip to content

Commit

Permalink
Add dates, skill links to registration
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasWanke committed Nov 4, 2024
1 parent 0179e0f commit 7f9b467
Showing 1 changed file with 32 additions and 7 deletions.
39 changes: 32 additions & 7 deletions src/pages/[lang]/anmeldung.astro
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
---
import { InformationCircleIcon } from "@heroicons/react/20/solid";
import { getRelativeLocaleUrl } from "astro:i18n";
import RegistrationForm from "~/components/forms/registration-form";
import Link from "~/components/Link.astro";
import NoTranslate from "~/components/NoTranslate.astro";
import { localeParams } from "~/i18n";
import { defaultLang, localeParams, type Language } from "~/i18n";
import Layout from "~/layouts/Layout.astro";
const lang = (Astro.currentLocale || defaultLang) as Language;
export const getStaticPaths = localeParams;
---

Expand All @@ -16,13 +19,35 @@ export const getStaticPaths = localeParams;
Anmeldung zum Online-Vorausscheid
</h2>
<p class="mt-8">
Der Online-Vorausscheid wird für alle drei Disziplinen gemeinsam
durchgeführt. Je nachdem, für welche Disziplin oder welche Disziplinen
du dich interessierst, bekommst du unterschiedliche Aufgaben.<br /><br
/>Bei den Deutschen Meisterschaften im Juni tritt jede Person dann nur
noch in einer Disziplin an. Genauere Informationen dazu erhältst du
während des Online-Vorausscheids.
Der Online-Vorausscheid wird vom 28. Dezember 2024 bis 28. Februar 2025
für alle drei Disziplinen gemeinsam durchgeführt. Je nachdem, für welche
Disziplin oder welche Disziplinen du dich interessierst, bearbeitest du
unterschiedliche Aufgaben.<br /><br />Bei den Deutschen Meisterschaften
vom 2. bis 5. Juni 2025 tritt jede Person dann nur noch in einer
Disziplin an. Mehr Informationen zu den Disziplinen und den weiteren
Runden des Wettbewerbs gibt es hier:
</p>
<ul class="mt-4 list-disc pl-8">
<li>
<Link
href={getRelativeLocaleUrl(lang, "mobile-applications-development")}
>App-Entwicklung</Link
>
</li>
<li>
<Link
href={getRelativeLocaleUrl(
lang,
"software-applications-development"
)}>Software-Entwicklung</Link
>
</li>
<li>
<Link href={getRelativeLocaleUrl(lang, "web-technologies")}
>Web-Entwicklung</Link
>
</li>
</ul>
<div class="my-8 rounded-md bg-blue-50 p-4">
<div class="flex items-center">
<div class="flex-shrink-0">
Expand Down

0 comments on commit 7f9b467

Please sign in to comment.