This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
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
23 changed files
with
552 additions
and
165 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
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"title": "Korrespondenzmitglieder", | ||
"astg_desc": "Aerospace Team Graz e.V.", | ||
"tu_wien_spaceteam_desc": "TU Wien Space Team e.V." | ||
} |
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,4 +1,4 @@ | ||
{ | ||
"title": "Fördermitglieder", | ||
"ohb": "Die OHB System AG ist eines der führenden Raumfahrtunternehmen Europas. Der Systemanbieter gehört zum Hochtechnologiekonzern OHB SE, in dem über 3.000 Mitarbeitende an europäischen Raumfahrtprogrammen arbeiten." | ||
"ohb_desc": "Die OHB System AG ist eines der führenden Raumfahrtunternehmen Europas. Der Systemanbieter gehört zum Hochtechnologiekonzern OHB SE, in dem über 3.000 Mitarbeitende an europäischen Raumfahrtprogrammen arbeiten." | ||
} |
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,5 @@ | ||
{ | ||
"title": "Corresponding Members", | ||
"astg_desc": "Aerospace Team Graz e.V.", | ||
"tu_wien_spaceteam_desc": "TU Wien Space Team e.V." | ||
} |
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,4 +1,4 @@ | ||
{ | ||
"title": "Supporting Members", | ||
"ohb": "The OHB System AG is one of the leading space companies in Europe. The system provider is part of the high-technology group OHB SE, where over 3,000 employees work on European space programs." | ||
"ohb_desc": "The OHB System AG is one of the leading space companies in Europe. The system provider is part of the high-technology group OHB SE, where over 3,000 employees work on European space programs." | ||
} |
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
import MemberCard, { type MemberInfo } from "./MemberCard"; | ||
|
||
// member logos | ||
import astgLogo from "./logos/ASTG.png"; | ||
import twstLogo from "./logos/TU-Wien-Space-Team.svg"; | ||
|
||
import { useTranslation } from "../../app/i18n/i18n"; | ||
|
||
export default async function Affiliated({ lng }: { lng: string }) { | ||
const { t } = await useTranslation(lng, "affiliated"); | ||
|
||
const members: MemberInfo[] = [ | ||
{ | ||
img: astgLogo, | ||
name: "ASTG", | ||
desc: "astg_desc", | ||
link: "https://astg.at", | ||
}, | ||
{ | ||
img: twstLogo, | ||
bdDarkImg: true, | ||
name: "TU Wien Space Team", | ||
desc: "tu_wien_spaceteam_desc", | ||
link: "https://spaceteam.at", | ||
}, | ||
]; | ||
|
||
return ( | ||
<div className="container flex flex-col gap-2 px-4"> | ||
<h2 className="text-2xl">{t("title")}</h2> | ||
|
||
<div className="grid grid-cols-1 gap-2 sm:grid-cols-2 lg:grid-cols-3"> | ||
{members.map((member) => ( | ||
<MemberCard | ||
key={member.name} | ||
img={member.img} | ||
bdDarkImg={member.bdDarkImg} | ||
name={member.name} | ||
desc={t(member.desc)} | ||
link={member.link} | ||
lng={lng} | ||
/> | ||
))} | ||
</div> | ||
</div> | ||
); | ||
} |
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
Oops, something went wrong.