Skip to content

Commit b32565e

Browse files
authored
Merge pull request #152 from HackHPI/jury+schedule
Jury+schedule
2 parents 6d64274 + 0328085 commit b32565e

File tree

7 files changed

+121
-21
lines changed

7 files changed

+121
-21
lines changed

src/app/page.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,23 @@ import {Gallery} from "../components/Gallery/Gallery";
88
import {Faq} from "../components/Faq/Faq";
99
import Team from "../components/Team/Team";
1010
import Speakers from "../components/Speakers/Speakers";
11+
import Jury from "../components/Jury/Jury";
1112
import {Features} from "../components/Features/Features";
1213
import LandingImage from "../components/LandingImage/LandingImage";
1314
import {Location} from "../components/Location/Location";
1415

1516
export default function Page() {
1617
return (
1718
<>
18-
<LandingImage/>
19+
<LandingImage />
1920
<VerifiedChecker />
2021
<WhatToExpect />
21-
<Features/>
22+
<Features />
2223
<Sponsors />
23-
<Registration/>
24-
<Location/>
25-
<Speakers/>
24+
<Registration />
25+
<Location />
26+
<Speakers />
27+
<Jury />
2628
<TimeTable />
2729
<Gallery />
2830
<Faq />
31.2 KB
Loading
740 KB
Loading

src/assets/images/jury/MonaGhazi.png

1.65 MB
Loading
3.06 MB
Loading

src/components/Jury/Jury.jsx

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
"use client"
2+
import {Box, Container, Grid, Paper, Stack, Typography, useTheme} from "@mui/material";
3+
import SebastianUlm from "../../assets/images/jury/SebastianUlm.jpg"
4+
import HolgerRhinow from "../../assets/images/jury/HolgerRhinow.png"
5+
import FlorianBreipohl from "../../assets/images/jury/FlorianBreipohl.jpeg"
6+
import MonaGhazi from "../../assets/images/jury/MonaGhazi.png"
7+
import {WindowCard} from "../WindowCard/WindowCard";
8+
9+
const jury = {
10+
primary: [
11+
{
12+
name: "Sebastian Ulm",
13+
position: "Head of Urban Innovation, Climate Tech Hub e.V.",
14+
profilePicture: SebastianUlm.src,
15+
description: "Sebastian built Urban Innovation, a project of the Climate Tech Hub, and has led it since 2021. His career in business development has included working as a consultant on behalf of the German Federal Ministry for Economic Affairs and Energy, for the German Energy Solutions Initiative and the Ministry's market entry program at eclareon GmbH, as well as working at the German-Indonesian Chamber of Industry and Commerce in Jakarta. With many years of experience in international cooperation around the globe, Sebastian builds strong networks between ecosystems to foster exchange and innovation.",
16+
},
17+
{
18+
name: "Dr. Holger Rhinow",
19+
position: "Head of HPI Maker Universe",
20+
profilePicture: HolgerRhinow.src,
21+
description: "Dr. Holger Rhinow is an expert in design thinking and innovation management, currently heading the HPI Maker Universe at the Hasso Plattner Institute, Potsdam. His role involves leading projects, aimed at fostering a vibrant research and innovation environment. With a focus on integrating advanced technologies, Holger’s initiatives provide support for student and researcher projects. Holger has authored numerous publications that delve into the nuances of design thinking, organizational learning, and innovation. He holds a doctorate in from the University of Potsdam.",
22+
},
23+
{
24+
name: "Florian Breipohl",
25+
position: "CEO at EnerKíte",
26+
profilePicture: FlorianBreipohl.src,
27+
description: "As the CEO of EnerKíte Airborne Wind Energy Converters, Florian Breipohl and his team are spearheading the global energy transition. Collaborating with partners from aerospace, industry, and wind energy sectors, EnerKíte aims to revolutionize traditional wind energy infrastructure by substituting conventional turbine towers with sophisticated software systems. Their innovative approach involves harnessing robust, high-altitude winds using kites to generate electricity on the ground. In his capacity within Airborne Wind Europe, Florian Breipohl actively engages with sector companies to craft EU-wide directives facilitating the introduction of airborne wind power systems to the market. This initiative aims to complement existing wind energy infrastructure with decentralized wind power solutions.",
28+
},
29+
{
30+
name: "Mona Ghazi",
31+
position: "Founder of the Neuropreneur Institute",
32+
profilePicture: MonaGhazi.src,
33+
description: "Mona Ghazi is a multiple award-winning entrepreneur and a PhD(c) in neuro-entrepreneurship. She started studying alongside school at 14 and successfully founded her second software company at 18. At 21, she sold Optimo to a leading global logistics company. As a computer scientist, she learned to program her subconscious to be more efficient and relaxed. She now passes on her experience of starting a business, personal development and neuroscience to other entrepreneurial minds.",
34+
},
35+
],
36+
}
37+
38+
function Jury() {
39+
const theme = useTheme();
40+
return (
41+
<Container sx={{paddingBottom: 10, paddingTop: 10}}>
42+
<Typography variant={"h2"} gutterBottom>Jury</Typography>
43+
<Grid container spacing={10}>
44+
<Grid item xs={12} md={12}>
45+
<Stack spacing={3}>
46+
{jury.primary.map(judge => (
47+
<WindowCard elevation={5} key={judge.name}>
48+
<Grid container spacing={5}>
49+
<Grid item xs={12} md={3}>
50+
<Paper sx={{
51+
borderRadius: theme.components.MuiCard.styleOverrides.root.borderRadius,
52+
background: `url(${judge.profilePicture})`,
53+
backgroundPosition: "center",
54+
backgroundSize: "cover",
55+
backgroundColor: "#e0e0e0",
56+
aspectRatio: "1 / 1 !important",
57+
height: "auto",
58+
maxWidth: "100%"
59+
}}
60+
/>
61+
</Grid>
62+
<Grid item xs={12} md={9}>
63+
<Stack spacing={3}>
64+
<Box>
65+
<Typography variant={"h4"}>{judge.name}</Typography>
66+
<Typography variant={"subtitle"} color={"text.disabled"}>
67+
{judge.position}
68+
</Typography>
69+
</Box>
70+
<Typography
71+
sx={{
72+
//display: "-webkit-box",
73+
//"-webkit-box-orient": "vertical",
74+
//"-webkit-line-clamp": "7",
75+
//overflow: "hidden",
76+
//textOverflow: "ellipsis"
77+
}}>
78+
{judge.description}
79+
</Typography>
80+
</Stack>
81+
</Grid>
82+
</Grid>
83+
</WindowCard>
84+
))}
85+
</Stack>
86+
</Grid>
87+
</Grid>
88+
</Container>
89+
)
90+
}
91+
92+
export default Jury;

src/components/TimeTable/TimeTable.jsx

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {IconContainer} from "../Features/Features";
1313

1414
const dayOne = [
1515
{
16-
time: "09:10 - 11:00",
16+
time: "09:00 - 11:00",
1717
icon: <ConfirmationNumber/>,
1818
title: "Check-In",
1919
person: "",
@@ -42,18 +42,30 @@ const dayOne = [
4242
title: "Lunch",
4343
person: "",
4444
},
45-
{
46-
time: "14:00 - 18:00",
47-
icon: <EmojiObjects/>,
48-
title: "Idea-Workshop",
49-
person: "optional",
50-
},
5145
{
5246
time: "14:00 - 13:00 next day (Continuously)",
5347
icon: <PlayArrow/>,
5448
title: "Start Hacking Time",
5549
person: "",
5650
},
51+
{
52+
time: "14:00 - 14:30",
53+
icon: <EmojiObjects/>,
54+
title: "Starwit Challenge Workshop",
55+
person: "optional",
56+
},
57+
{
58+
time: "16:00 - 16:30",
59+
icon: <EmojiObjects/>,
60+
title: "AI Workshop by Axel Springer",
61+
person: "optional",
62+
},
63+
{
64+
time: "18:30 - 19:00",
65+
icon: <EmojiObjects/>,
66+
title: "Pitch Workshop by Axel Springer",
67+
person: "optional",
68+
},
5769
{
5870
time: "18:00 - 19:00",
5971
icon: <Restaurant/>,
@@ -69,12 +81,6 @@ const dayTwo = [
6981
title: "Breakfast",
7082
person: "",
7183
},
72-
{
73-
time: "09:00 - 10:00",
74-
icon: <EmojiObjects/>,
75-
title: "Pitch-Workshop",
76-
person: "optional",
77-
},
7884
{
7985
time: "13:00",
8086
icon: <Stop/>,
@@ -88,17 +94,17 @@ const dayTwo = [
8894
person: "",
8995
},
9096
{
91-
time: "14:00 - 16:00",
97+
time: "14:00 - 17:00",
9298
icon: <Campaign/>,
9399
title: "Challenge Presentations",
94100
person: "",
95101
}, {
96-
time: "17:00 - 18:00",
102+
time: "17:00 - 17:15",
97103
icon: <EmojiEvents/>,
98104
title: "Feedback & Awards",
99105
person: "",
100106
}, {
101-
time: "18:00",
107+
time: "17:15",
102108
icon: <Celebration/>,
103109
title: "Drinks & Networking",
104110
person: "",

0 commit comments

Comments
 (0)