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: 0 additions & 4 deletions .vscode/extensions.json

This file was deleted.

11 changes: 0 additions & 11 deletions .vscode/launch.json

This file was deleted.

2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function Page() {
<Sponsors25/>
<Gallery/>
<Newsletter/>
<Registration />
{/* <Registration /> */}
{/* <Location />*/}
<Speakers/>
<Jury/>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Faq/Faq.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ let faqs = [
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."
}, {
title: "Where can I stay during the Hackathon?",
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."
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."
}, {
title: "How can I get to the location?",
text: "Take the S7 or RB 23 from Berlin Central Station (\"Berlin Hauptbahnhof\") towards Potsdam and exit at Potsdam Griebnitzsee."
Expand Down
13 changes: 8 additions & 5 deletions src/components/LandingImage/LandingImage.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use client";
import { Button, Card, Container, Stack, Typography } from "@mui/material";
import { TypeAnimation } from "react-type-animation";
import { Article, CalendarMonthOutlined } from "@mui/icons-material";
import {Article, CalendarMonthOutlined, CameraAlt} from "@mui/icons-material";
import { useEffect, useState } from "react";
import { MeshContainer } from "./MeshContainer/MeshContainer";

Expand Down Expand Up @@ -49,7 +49,8 @@ function LandingImage() {
1000,
"For better treatments", // initially rendered starting point
1000,
`See you in ${Math.round(timeLeft / (24 * 60 * 60 * 1000))} Days!`,
//`See you in ${Math.round(timeLeft / (24 * 60 * 60 * 1000))} Days!`,
`Thank you for joining us!`,
10000,
]}
speed={50}
Expand All @@ -67,16 +68,18 @@ function LandingImage() {
fontSize: "1rem",
}}
color={"primary"}
startIcon={<Article />}
startIcon={<CameraAlt />}
onClick={() =>
document.getElementById("signupForm").scrollIntoView({
// document.getElementById("signupForm").scrollIntoView({
document.getElementById("images").scrollIntoView({
behavior: "smooth",
block: "start",
inline: "nearest",
})
}
>
Registration
{/* Registration */}
Photo Gallery
</Button>
<Card
sx={{ height: "3.5rem", justifyContent: "center", display: "flex" }}
Expand Down
Loading