Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #167

Merged
merged 9 commits into from
Feb 7, 2025
Merged
Binary file modified public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export default function RootLayout({children,}: { children: React.ReactNode }) {
<head>
<meta charSet="UTF-8"/>
<meta name="viewport" content="width=device-width"/>
<link rel="icon" type="image/svg+xml" href="/HackHPI_white.svg"/>
<link rel="icon" href="/favicon.png"/>
<link rel="apple-touch-icon" href="/favicon.png"/>
<title>
HackHPI 2025 | Health Edition.
</title>
Expand Down
Binary file added src/assets/images/team/2025/constantin_sachse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/team/2025/gerome_quantmeyer.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/team/2025/grit_manssen.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/Faq/Faq.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ let faqs = [
},
{
title: "When will applications close??",
text: "Applications will open 15th February - 15th March."
text: "Applications will open 16th January - 28th February."
},
{
title: "When will I hear back?",
Expand Down
11 changes: 6 additions & 5 deletions src/components/Team/Team.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,16 @@ import GeromeQuantmeyerProfile2024 from "../../assets/images/team/2024/gerome_qu
import UliPrantzProfile2024 from "../../assets/images/team/2024/uli_prantz.webp"

import CedricRischeProfile2025 from "../../assets/images/team/2025/cedric_rische.jpg"
import ConstantinSachseProfile2025 from "../../assets/images/team/2025/constantin_sachse.jpg"
import DanielKissProfile2025 from "../../assets/images/team/2025/daniel_kiss.jpg"
import GeromeQuantmeyerProfile2025 from "../../assets/images/team/2025/gerome_quantmeyer.jpg"
import GritManssenProfile2025 from "../../assets/images/team/2025/grit_manssen.jpg"
import JeanneAueProfile2025 from "../../assets/images/team/2025/jeanne_aue.jpg"
import MathildaHeiseProfile2025 from "../../assets/images/team/2025/mathilda_heise.jpg"
import MaximilianPiperProfile2025 from "../../assets/images/team/2025/maximilian_piper.jpg"
import NikolasRiegerProfile2025 from "../../assets/images/team/2025/nikolas_rieger.jpg"
import TanjaLehmannProfile2025 from "../../assets/images/team/2025/tanja_lehmann.jpg"
import ViktorKalvodaProfile2025 from "../../assets/images/team/2025/viktor_kalvoda.jpg"
// import GeromeQuantmeyerProfile2025 from "../../assets/images/team/2025/gerome_quantmeyer.jpg"
// import GritManssenProfile2025 from "../../assets/images/team/2025/grit_manssen.jpg"
import {Avatar, Box, Card, Container, Grid, Link, Stack, Typography, useMediaQuery, useTheme} from "@mui/material";
import {LinkedIn} from "@mui/icons-material";
import {useEffect, useState} from "react";
Expand Down Expand Up @@ -98,7 +99,7 @@ const teamMembers25 = [
name: "Grit Manssen",
position: "Team Member",
linkedIn: "grit-manssen-0270b023a",
profilePicture: ""
profilePicture: GritManssenProfile2025
},
{
name: "Nikolas Rieger",
Expand Down Expand Up @@ -134,7 +135,7 @@ const teamMembers25 = [
name: "Gerome Quantmeyer",
position: "Team Member",
linkedIn: "gerome-quantmeyer-44a90322b",
profilePicture: ""
profilePicture: GeromeQuantmeyerProfile2025
},
{
name: "Jeanne Aue",
Expand All @@ -146,7 +147,7 @@ const teamMembers25 = [
name: "Constantin Sachse",
position: "Team Member",
linkedIn: "",
profilePicture: ""
profilePicture: ConstantinSachseProfile2025
},
]

Expand Down
Loading