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
Binary file added src/assets/images/jury/2026/jannik_redenius.jpg
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/jury/2026/marc_rosenau.jpg
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/jury/2026/simon_stadlinger.jpg
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/jury/2026/timo_korthals.jpg
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/speakers/2026/marc_rosenau.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 34 additions & 2 deletions src/components/Jury/Jury.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,47 @@ import LarisaWewetzer from "../../assets/images/jury/2025/larisa_wewetzer.webp";
import JohannesVedder from "../../assets/images/jury/2025/johannes_vedder.webp";
import GuidoSchwartze from "../../assets/images/jury/2025/guido_schwartze.webp";
import FlorijanReetz from "../../assets/images/jury/2025/florijan_reetz.webp";
import SimonStadlinger from "../../assets/images/jury/2026/simon_stadlinger.jpg";
import TimoKorthals from "../../assets/images/jury/2026/timo_korthals.jpg"
import MarcRosenau from "../../assets/images/jury/2026/marc_rosenau.jpg"
import JannikRedenius from "../../assets/images/jury/2026/jannik_redenius.jpg";
import { Campaign, KeyboardArrowLeft, KeyboardArrowRight } from "@mui/icons-material";
import { useState } from "react";
import { WindowCard } from "../WindowCard/WindowCard";
import * as React from "react";

const juryYears = [
{
year: 2026,
jury: [],
jury: [
{
name: "Simon Stadlinger",
position: "Co-Founder at Cula",
profilePicture: SimonStadlinger.src,
description:
"",
},
{
name: "Timo Korthals",
position: "Research And Development Engineer at CLAAS",
profilePicture: TimoKorthals.src,
description:
"",
},
{
name: "Marc Rosenau",
position: "Co-Founder at Cula",
profilePicture: MarcRosenau.src,
description:
"",
},
{
name: "Jannik Redenius",
position: "Lead Engineer ADAS & Driving automation at CLAAS",
profilePicture: JannikRedenius.src,
description:
"",
},
],
},
{
year: 2025,
Expand Down
13 changes: 11 additions & 2 deletions src/components/Speakers/Speakers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,24 @@ import {
} from "@mui/material";
import FelixLennardHake from "../../assets/images/speakers/2024/FelixLennardHake.jpg";
import PaulBrachmann from "../../assets/images/speakers/2025/paul_brachmann.webp";
import MarcRosenau from "../../assets/images/speakers/2026/marc_rosenau.jpg";
import { WindowCard } from "../WindowCard/WindowCard";
import { useState } from "react";
import { Campaign, KeyboardArrowLeft, KeyboardArrowRight } from "@mui/icons-material";
import * as React from "react";

const speakerYears = [
{
year: 2026,
speaker: [],
speaker: [
{
name: "Marc Rosenau",
position:
"Co-Founder at Cula",
profilePicture: MarcRosenau.src,
description:
"",
},
],
},
{
year: 2025,
Expand Down
Loading