diff --git a/src/app/page.tsx b/src/app/page.tsx
index d327b5c..6abfe87 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -8,6 +8,7 @@ import {Gallery} from "../components/Gallery/Gallery";
import {Faq} from "../components/Faq/Faq";
import Team from "../components/Team/Team";
import Speakers from "../components/Speakers/Speakers";
+import Jury from "../components/Jury/Jury";
import {Features} from "../components/Features/Features";
import LandingImage from "../components/LandingImage/LandingImage";
import {Location} from "../components/Location/Location";
@@ -23,6 +24,7 @@ export default function Page() {
+
diff --git a/src/assets/images/jury/FlorianBreipohl.jpeg b/src/assets/images/jury/FlorianBreipohl.jpeg
new file mode 100644
index 0000000..b8f647b
Binary files /dev/null and b/src/assets/images/jury/FlorianBreipohl.jpeg differ
diff --git a/src/assets/images/jury/HolgerRhinow.png b/src/assets/images/jury/HolgerRhinow.png
new file mode 100644
index 0000000..9b91df3
Binary files /dev/null and b/src/assets/images/jury/HolgerRhinow.png differ
diff --git a/src/assets/images/jury/MonaGhazi.JPG b/src/assets/images/jury/MonaGhazi.JPG
new file mode 100644
index 0000000..6a23868
Binary files /dev/null and b/src/assets/images/jury/MonaGhazi.JPG differ
diff --git a/src/assets/images/jury/SebastianUlm.jpg b/src/assets/images/jury/SebastianUlm.jpg
new file mode 100644
index 0000000..701f95f
Binary files /dev/null and b/src/assets/images/jury/SebastianUlm.jpg differ
diff --git a/src/components/Jury/Jury.jsx b/src/components/Jury/Jury.jsx
new file mode 100644
index 0000000..270236e
--- /dev/null
+++ b/src/components/Jury/Jury.jsx
@@ -0,0 +1,92 @@
+"use client"
+import {Box, Container, Grid, Paper, Stack, Typography, useTheme} from "@mui/material";
+import SebastianUlm from "../../assets/images/jury/SebastianUlm.jpg"
+import HolgerRhinow from "../../assets/images/jury/HolgerRhinow.png"
+import FlorianBreipohl from "../../assets/images/jury/FlorianBreipohl.jpeg"
+import MonaGhazi from "../../assets/images/jury/MonaGhazi.JPG"
+import {WindowCard} from "../WindowCard/WindowCard";
+
+const jury = {
+ primary: [
+ {
+ name: "Sebastian Ulm",
+ position: "Head of Urban Innovation, Climate Tech Hub e.V.",
+ profilePicture: SebastianUlm.src,
+ 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.",
+ },
+ {
+ name: "Dr. Holger Rhinow",
+ position: "Head of HPI Maker Universe",
+ profilePicture: HolgerRhinow.src,
+ 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.",
+ },
+ {
+ name: "Florian Breipohl",
+ position: "CEO at EnerKíte",
+ profilePicture: FlorianBreipohl.src,
+ 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.",
+ },
+ {
+ name: "Mona Ghazi",
+ position: "Founder of the Neuropreneur Institute",
+ profilePicture: MonaGhazi.src,
+ 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.",
+ },
+ ],
+}
+
+function Jury() {
+ const theme = useTheme();
+ return (
+
+ Jury
+
+
+
+ {jury.primary.map(jury_part => (
+
+
+
+
+
+
+
+
+ {jury_part.name}
+
+ {jury_part.position}
+
+
+
+ {jury_part.description}
+
+
+
+
+
+ ))}
+
+
+
+
+ )
+}
+
+export default Jury;
\ No newline at end of file