From 6f1d78abf93c31828f3fa623b9d7043d8c636408 Mon Sep 17 00:00:00 2001
From: C0NZZ <41445678+C0NZZ@users.noreply.github.com>
Date: Thu, 6 Feb 2025 22:48:25 +0100
Subject: [PATCH 1/3] changed button colors, added mail icon
---
src/components/Faq/Faq.jsx | 5 +++--
src/components/Gallery/Gallery.jsx | 2 +-
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/src/components/Faq/Faq.jsx b/src/components/Faq/Faq.jsx
index fba97aa..1e191d1 100644
--- a/src/components/Faq/Faq.jsx
+++ b/src/components/Faq/Faq.jsx
@@ -16,8 +16,9 @@ import {
useMediaQuery,
useTheme
} from "@mui/material";
+import MailIcon from "@mui/icons-material/mail";
import React from "react";
-import {KeyboardArrowRight} from "@mui/icons-material";
+import {KeyboardArrowRight, MailOutline} from "@mui/icons-material";
import {WindowCard} from "../WindowCard/WindowCard.jsx";
import {Masonry} from "@mui/lab";
import HackHPIWrapper from "../Theme/HackHPIWrapper.jsx";
@@ -160,7 +161,7 @@ export function Faq() {
ask!
-
+ }>Contact us
diff --git a/src/components/Gallery/Gallery.jsx b/src/components/Gallery/Gallery.jsx
index 4328186..ed34a82 100644
--- a/src/components/Gallery/Gallery.jsx
+++ b/src/components/Gallery/Gallery.jsx
@@ -61,7 +61,7 @@ export function Gallery() {
{renderImages(secondImages, -150)}
{renderImages(thirdImages, -200)}
-
+
setIsGalleryOpen(false)}/>
From a773f2a7735f99f8a8da1363b2ea7e6407ae1692 Mon Sep 17 00:00:00 2001
From: Cedric Rische
Date: Fri, 14 Feb 2025 10:18:10 +0100
Subject: [PATCH 2/3] Fixed year in faq
---
src/components/Faq/Faq.jsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/components/Faq/Faq.jsx b/src/components/Faq/Faq.jsx
index fba97aa..58c98d3 100644
--- a/src/components/Faq/Faq.jsx
+++ b/src/components/Faq/Faq.jsx
@@ -34,8 +34,8 @@ let faqs = [
title: "What's so special about HackHPI?",
text: "There are very few hackathons focusing on social issues; we want to fix that and give you the chance to change the world for the better by building applications that truly matter! You will also have the opportunity to get in touch with our awesome partners, slip into their shoes and solve real-world challenges using their APIs and expertise."
}, {
- title: "Will HackHPI 2024 take place onsite?",
- text: "Yes, and that's quite a sure thing. We believe that Hackathons need the human contact that only in-person events can provide, and we're glad to announce that the HackHPI 2024 will be an in-presence only event!"
+ title: "Will HackHPI 2025 take place onsite?",
+ text: "Yes, and that's quite a sure thing. We believe that Hackathons need the human contact that only in-person events can provide, and we're glad to announce that the HackHPI 2025 will be an in-presence only event!"
}, {
title: "Are there any costs for me?",
text: "Nope! HackHPI is completely free, and we provide you with food, drinks (and a lot of caffeine! :D) during the whole Hackathon. Unfortunately, we are not able to provide travel reimbursements. However, as an attendee, your confirmation email will include a link to our DB Event Ticket to receive a discount when booking via DB."
From 4ed7fce23e7df3a176d9f3e1c09847346fefffb5 Mon Sep 17 00:00:00 2001
From: C0NZZ <41445678+C0NZZ@users.noreply.github.com>
Date: Fri, 14 Feb 2025 14:31:48 +0100
Subject: [PATCH 3/3] 2024 cleanup
---
public/HackHPI24_white.svg | 84 --------------------
public/manifest.json | 6 +-
src/components/LandingImage/Countdown.jsx | 23 ------
src/components/Registration/Registration.jsx | 2 +-
4 files changed, 4 insertions(+), 111 deletions(-)
delete mode 100644 public/HackHPI24_white.svg
delete mode 100644 src/components/LandingImage/Countdown.jsx
diff --git a/public/HackHPI24_white.svg b/public/HackHPI24_white.svg
deleted file mode 100644
index e3ff184..0000000
--- a/public/HackHPI24_white.svg
+++ /dev/null
@@ -1,84 +0,0 @@
-
-
diff --git a/public/manifest.json b/public/manifest.json
index 05bf7b6..a0e26aa 100644
--- a/public/manifest.json
+++ b/public/manifest.json
@@ -1,7 +1,7 @@
{
- "name": "HackHPI 24",
- "short_name": "HackHPI 2024",
- "description": "Explore the future of urban living at HPI in Potsdam. Join motivated students for two days of innovation, workshops, and collaboration with top-notch sponsors offering support and expertise. Tackle a challenge and dive into the world of smart cities.",
+ "name": "HackHPI 25",
+ "short_name": "HackHPI 2025",
+ "description": "Explore the future of health at HPI in Potsdam. Join motivated students for two days of innovation, workshops, and collaboration with top-notch sponsors offering support and expertise. Tackle a challenge and dive into the world of health.",
"start_url": "/",
"display": "standalone",
"background_color": "#13101B",
diff --git a/src/components/LandingImage/Countdown.jsx b/src/components/LandingImage/Countdown.jsx
deleted file mode 100644
index 7b65525..0000000
--- a/src/components/LandingImage/Countdown.jsx
+++ /dev/null
@@ -1,23 +0,0 @@
-'use client'
-import {Typography} from "@mui/material";
-import {useEffect, useState} from "react";
-
-function Countdown() {
-
- const [timeLeft, setTimeLeft] = useState(new Date(new Date(2024, 3, 5) - new Date()))
-
- useEffect(() => {
- const i = setInterval(() => {
- setTimeLeft(new Date(new Date(2024, 3, 5) - new Date()))
- }, 1000);
- return () => clearInterval(i);
- }, []); //dependency, if end changes remount
-
- return (
-
- {`${Math.round(timeLeft / (24 * 60 * 60 * 1000))} Days`}
-
- )
-}
-
-export default Countdown;
\ No newline at end of file
diff --git a/src/components/Registration/Registration.jsx b/src/components/Registration/Registration.jsx
index 814e502..d6f6614 100644
--- a/src/components/Registration/Registration.jsx
+++ b/src/components/Registration/Registration.jsx
@@ -594,7 +594,7 @@ function Registration() {
privacy policy
{" "}
- for information on how we handle your data and what you rights are.
+ for information on how we handle your data and what your rights are.
>
);