Skip to content

Commit c5990be

Browse files
authored
Post-hackathon cleanup 2025
Cleaned up a bit to get the site ready for the time before promoting the next event
2 parents d4fac25 + 28107a5 commit c5990be

File tree

5 files changed

+10
-22
lines changed

5 files changed

+10
-22
lines changed

.vscode/extensions.json

-4
This file was deleted.

.vscode/launch.json

-11
This file was deleted.

src/app/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default function Page() {
2222
<Sponsors25/>
2323
<Gallery/>
2424
<Newsletter/>
25-
<Registration />
25+
{/* <Registration /> */}
2626
{/* <Location />*/}
2727
<Speakers/>
2828
<Jury/>

src/components/Faq/Faq.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ let faqs = [
4141
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."
4242
}, {
4343
title: "Where can I stay during the Hackathon?",
44-
text: "This is an all-night Hackathon, meaning that we won't stop until the last one standing. We will provide rooms in which you can sleep or just rest, but you're required to bring your own sleeping bag and air mattress. We're also planning on organizing a couch surfing option from Thursday to Friday for everybody coming early. If you wish to participate in this, whether you want to stay or offer a bed, please note that down when filling in the application form."
44+
text: "This is an all-night Hackathon, meaning that we won't stop until the last one standing. We will provide rooms in which you can sleep or just rest, but you're required to bring your own sleeping bag and air mattress."
4545
}, {
4646
title: "How can I get to the location?",
4747
text: "Take the S7 or RB 23 from Berlin Central Station (\"Berlin Hauptbahnhof\") towards Potsdam and exit at Potsdam Griebnitzsee."

src/components/LandingImage/LandingImage.jsx

+8-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client";
22
import { Button, Card, Container, Stack, Typography } from "@mui/material";
33
import { TypeAnimation } from "react-type-animation";
4-
import { Article, CalendarMonthOutlined } from "@mui/icons-material";
4+
import {Article, CalendarMonthOutlined, CameraAlt} from "@mui/icons-material";
55
import { useEffect, useState } from "react";
66
import { MeshContainer } from "./MeshContainer/MeshContainer";
77

@@ -49,7 +49,8 @@ function LandingImage() {
4949
1000,
5050
"For better treatments", // initially rendered starting point
5151
1000,
52-
`See you in ${Math.round(timeLeft / (24 * 60 * 60 * 1000))} Days!`,
52+
//`See you in ${Math.round(timeLeft / (24 * 60 * 60 * 1000))} Days!`,
53+
`Thank you for joining us!`,
5354
10000,
5455
]}
5556
speed={50}
@@ -67,16 +68,18 @@ function LandingImage() {
6768
fontSize: "1rem",
6869
}}
6970
color={"primary"}
70-
startIcon={<Article />}
71+
startIcon={<CameraAlt />}
7172
onClick={() =>
72-
document.getElementById("signupForm").scrollIntoView({
73+
// document.getElementById("signupForm").scrollIntoView({
74+
document.getElementById("images").scrollIntoView({
7375
behavior: "smooth",
7476
block: "start",
7577
inline: "nearest",
7678
})
7779
}
7880
>
79-
Registration
81+
{/* Registration */}
82+
Photo Gallery
8083
</Button>
8184
<Card
8285
sx={{ height: "3.5rem", justifyContent: "center", display: "flex" }}

0 commit comments

Comments
 (0)