Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/Faq/Faq.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export function Faq() {
questions</Typography>
<Typography variant={"body1"} sx={{marginBottom: "4rem"}}>Can't find the answer you're looking for? You
can
always <Link href={"mailto:team@hackhpi.org"} color={"inherit"}>send us an email</Link> with your
always <Link href={"mailto:support@hackhpi.org"} color={"inherit"}>send us an email</Link> with your
inquiry!</Typography>
<Grid container spacing={7}>
<Grid item xs={12} md={4}>
Expand Down Expand Up @@ -161,7 +161,7 @@ export function Faq() {
ask!</Typography>
</CardContent>
<CardActions>
<Button sx={{ ml: 1, mb: 1 }} variant="contained" size="small" color="primary" href={"mailto:team@hackhpi.org"} startIcon={<MailOutline />}>Contact us</Button>
<Button sx={{ ml: 1, mb: 1 }} variant="contained" size="small" color="primary" href={"mailto:support@hackhpi.org"} startIcon={<MailOutline />}>Contact us</Button>
</CardActions>
</Card>
</Stack>
Expand Down
4 changes: 2 additions & 2 deletions src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const socials = [
},
{
icon: <Mail/>,
link: "mailto:team@hackhpi.org",
link: "mailto:support@hackhpi.org",
},
]

Expand Down Expand Up @@ -128,4 +128,4 @@ function Footer() {
)
}

export default Footer
export default Footer
2 changes: 1 addition & 1 deletion src/components/Imprint/Imprint.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ function Imprint() {
E-Mail: <Link href="mailto:team@hackhpi.org" color={"inherit"}>team@hackhpi.org</Link>
</Typography>
<Typography variant="body1">Inhaltlich verantwortlich gemäß § 5 TMG, § 55 RStV: Klubsprecher Jeanne
Aue, Mathilda Heise und Cedric Rische</Typography>
Aue, Daniel Kiss und Cedric Rische</Typography>
</Box>
<Box>
<Typography variant="h2" gutterBottom>Haftungsausschluss</Typography>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Registration/Registration.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ function Registration() {
})
.catch((error) => {
alert(
"Could not save Registration. Please try again. If problem persists, please contact team@hackhpi.org. Error: " +
"Could not save Registration. Please try again. If problem persists, please contact support@hackhpi.org. Error: " +
JSON.stringify(error.data),
);
setIsSending(false);
Expand Down
65 changes: 62 additions & 3 deletions src/components/Team/Team.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,65 @@ const teamMembers25 = [
},
]

const teamMembers26 = [
{
name: "Cedric Rische",
position: "Team Member",
linkedIn: "cedric-rische",
profilePicture: CedricRischeProfile2025,
},
{
name: "Grit Manssen",
position: "Team Member",
linkedIn: "grit-manssen-0270b023a",
profilePicture: GritManssenProfile2025,
},
{
name: "Tanja Lehmann",
position: "Team Member",
linkedIn: "tanja-lehmann-36713a265",
profilePicture: TanjaLehmannProfile2025,
},
{
name: "Daniel Kiss",
position: "Team Member",
linkedIn: "kdaniel21",
profilePicture: DanielKissProfile2025,
},
{
name: "Jeanne Aue",
position: "Team Member",
linkedIn: "jeanne-aue",
profilePicture: JeanneAueProfile2025,
},
{
name: "Constantin Sachse",
position: "Team Member",
linkedIn: "",
profilePicture: ConstantinSachseProfile2025,
},
{
name: "Alyssa Hilgendorf",
position: "Team Member",
linkedIn: "alyssa-hilgendorf-835a45346",
},
{
name: "Henri Becker",
position: "Team Member",
linkedIn: "henri-aldo-becker-06a265297",
},
{
name: "Jolanda Bolt",
position: "Team Member",
linkedIn: "jolanda-bolt-6480a5222",
},
{
name: "Klara Prigge",
position: "Team Member",
linkedIn: "klara-luise-prigge-8b73a830a",
},
];


function stringToColor(string) {
let hash = 0;
Expand Down Expand Up @@ -194,7 +253,7 @@ function Team() {
<Container sx={{paddingTop: 10, paddingBottom: 10}}>
<Typography variant={"h2"} component={"h1"} gutterBottom>Meet the team</Typography>
<Grid container spacing={3}>
{teamMembers25.sort((a, b) => {
{teamMembers26.sort((a, b) => {
const nameA = a.name.toUpperCase(); // ignore upper and lowercase
const nameB = b.name.toUpperCase(); // ignore upper and lowercase
if (nameA < nameB) {
Expand Down Expand Up @@ -223,7 +282,7 @@ function Team() {
justifyContent: "center",
}}
>
<Avatar src={teamMember.profilePicture.src} sx={{
<Avatar src={teamMember.profilePicture?.src} sx={{
height: imageSize,
width: imageSize,
boxShadow: 7,
Expand Down Expand Up @@ -265,4 +324,4 @@ function Team() {

}

export default Team
export default Team
Loading