-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
120 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
[ | ||
{ | ||
"img": "/src/assets/img/team/Benjamin Frost.webp", | ||
"name": "Benjamin Frost", | ||
"lastRole": "Jury", | ||
"hasMultipleRoles": true | ||
}, | ||
{ | ||
"img": "/src/assets/img/team/Jonas Wanke.webp", | ||
"name": "Jonas Wanke", | ||
"lastRole": "Expert", | ||
"skill": "Skill 08", | ||
"hasMultipleRoles": true | ||
}, | ||
{ | ||
"img": "/src/assets/img/team/Dr. Olaf Kappler.webp", | ||
"name": "Dr. Olaf Kappler", | ||
"lastRole": "Expert", | ||
"skill": "Skill 09" | ||
}, | ||
{ | ||
"img": "/src/assets/img/team/Doreen Kappler.webp", | ||
"name": "Doreen Kappler", | ||
"lastRole": "Good Fairy" | ||
}, | ||
{ | ||
"img": "/src/assets/img/team/Glenn Skrzypczak.webp", | ||
"name": "Glenn Skrzypczak", | ||
"lastRole": "Expert", | ||
"skill": "Skill 17", | ||
"hasMultipleRoles": true | ||
}, | ||
{ | ||
"img": "/src/assets/img/team/Elisa Boose.webp", | ||
"name": "Elisa Boose", | ||
"lastRole": "Trainer" | ||
}, | ||
{ | ||
"img": "/src/assets/img/team/Michael Boose.webp", | ||
"name": "Michael Boose", | ||
"lastRole": "Trainer" | ||
}, | ||
{ | ||
"img": "/src/assets/img/team/Joachim Schiller.webp", | ||
"name": "Joachim Schiller", | ||
"lastRole": "Jury", | ||
"hasMultipleRoles": true | ||
}, | ||
{ | ||
"img": "/src/assets/img/team/Justin Konratt.webp", | ||
"name": "Justin Konratt", | ||
"lastRole": "Jury", | ||
"hasMultipleRoles": true | ||
}, | ||
{ | ||
"img": "/src/assets/img/team/Kai Redmann.webp", | ||
"name": "Kai Redmann", | ||
"lastRole": "Workshop Manager" | ||
}, | ||
{ | ||
"img": "/src/assets/img/team/Lukas Fischer.webp", | ||
"name": "Lukas Fischer", | ||
"lastRole": "Workshop Manager" | ||
}, | ||
{ | ||
"img": "/src/assets/img/team/Thomas Steinfeld.webp", | ||
"name": "Thomas Steinfeld", | ||
"lastRole": "Mr. Speed Programming" | ||
} | ||
] |
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
--- | ||
import { getLangFromUrl, localeParams, useTranslations } from "~/i18n/utils"; | ||
import Hero from "../../components/Hero.astro"; | ||
import TeamPage from "../../components/team/Team.astro"; | ||
import Layout from "../../layouts/Layout.astro"; | ||
import { getStaticLangPaths, updateLang } from "../../routing/lang"; | ||
import { t } from "i18next"; | ||
import TeamImage from "~/assets/img/team.webp"; | ||
export const getStaticPaths = getStaticLangPaths; | ||
updateLang(Astro.url.pathname); | ||
export const getStaticPaths = localeParams; | ||
const lang = getLangFromUrl(Astro.url); | ||
const t = useTranslations(lang); | ||
--- | ||
|
||
<Layout title={t("team.title")}> | ||
<Hero | ||
title={t("team.title")} | ||
img="https:////live.staticflickr.com/65535/52434467221_676ae1bf70_h.jpg" | ||
/> | ||
<Layout title={t({ de: "Unser Team", en: "Our Team" })}> | ||
<Hero title={t({ de: "Unser Team", en: "Our Team" })} img={TeamImage} /> | ||
<TeamPage /> | ||
</Layout> |