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/Team/Team.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ const teamMembers25 = [
{
name: "Constantin Sachse",
position: "Team Member",
linkedIn: "",
linkedIn: "constantinsachse",
profilePicture: ConstantinSachseProfile2025
},
]
Expand Down Expand Up @@ -191,7 +191,7 @@ const teamMembers26 = [
{
name: "Constantin Sachse",
position: "Team Member",
linkedIn: "",
linkedIn: "constantinsachse",
profilePicture: ConstantinSachseProfile2025,
},
{
Expand Down
115 changes: 105 additions & 10 deletions src/components/TimeTable/TimeTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,77 @@ import {
KeyboardArrowRight,
PlayArrow,
Restaurant,
Coffee,
BakeryDining,
Stop
} from "@mui/icons-material";
import * as React from "react";
import {useState} from "react";
import {IconContainer} from "../Features/Features";
import colorYears from "../Theme/HackHpiColors";
import { title } from "process";

const dayOneYears = [
{
year: 2026,
subtitle: "TBA",
dayOne: [],
},
{
year: 2026,
subtitle: "Friday 10.04",
dayOne: [
{
time: "09:00 - 11:00",
icon: <ConfirmationNumber/>,
title: "Check-In + Breakfast",
person: "",
},
{
time: "11:00 - 12:00",
icon: <Campaign/>,
title: "Speaker",
person: "",
},
{
time: "12:00 - 13:00",
icon: <Campaign/>,
title: "Challenge Presentation",
person: "",
},
{
time: "13:00 - 14:00",
icon: <Restaurant/>,
title: "Lunch",
person: "",
},
{
time: "14:00 - 15:00",
icon: <EmojiObjects/>,
title: "Challenge Input",
person: "optional",
},
{
time: "14:00 - 13:00 next day (continuously)",
icon: <PlayArrow/>,
title: "Begin Hacking Time",
person: "",
},
{
time: "16:00 - 17:00",
icon: <BakeryDining/>,
title: "Waffles",
person: "by Cula"
},
{
time: "19:00 - 20:00",
icon: <Restaurant/>,
title: "Dinner",
person: "",
},
{
time: "00:00 - 01:00",
icon: <Restaurant/>,
title: "Midnight Snack",
person: "",
}
],
},
{
year: 2025,
subtitle: "Friday 21.03",
Expand Down Expand Up @@ -164,11 +222,48 @@ const dayOneYears = [
]

const dayTwoYears = [
{
year: 2026,
subtitle: "TBA",
dayTwo: [],
},
{
year: 2026,
subtitle: "Saturday 11.04",
dayTwo: [
{
time: "08:00 - 09:00",
icon: <Restaurant/>,
title: "Breakfast",
person: "",
},
{
time: "09:00 - 11:00",
icon: <Coffee/>,
title: "Coffee Cart",
person: "by Quantco",
},
{
time: "13:00",
icon: <Stop/>,
title: "End Hacking Time",
person: "",
},
{
time: "13:00 - 14:00",
icon: <Restaurant/>,
title: "Lunch",
person: "",
},
{
time: "14:00 - 16:00",
icon: <Campaign/>,
title: "Presentations",
person: "",
},
{
time: "16:00 - 17:00",
icon: <EmojiEvents/>,
title: "Awards + Final Words",
person: "",
}
],
},
{
year: 2025,
subtitle: "Saturday 22.03",
Expand Down
Loading