Skip to content

Commit

Permalink
final changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sajochems committed May 17, 2024
1 parent 5a5252d commit 49ddb93
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 12 deletions.
2 changes: 1 addition & 1 deletion data/faq.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
},
{
"question": "How can I sign up for HackDelft?",
"answer": "Buy a ticket at: https://ch.tudelft.nl/activities/event/2024/hackaton/ and don't forget to fill in the form at: wisv.ch/hackform"
"answer": "Unfortunatly we are sold out! if you already have a ticket don't forget to fill in the form at: wisv.ch/hackform"
},
{
"question": "What languages can I use during the event?",
Expand Down
14 changes: 10 additions & 4 deletions data/timeline.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"id": "sa4",
"time": "16:30 - 17:30",
"name": "Pitch workshop",
"description": "A pitch workshop will take place in which you will learn how to create the perfect pitch. This will be helpfull when you have to pitch your solution to the judges at the end of the contest."
"description": "A pitch workshop will take place in which you will learn how to create the perfect pitch. This will be helpfull when you have to pitch your solution to the judges at the end of the contest. The workshop is provided by UniPartners"
},
{
"id": "sa5",
Expand All @@ -40,18 +40,24 @@
},
{
"id": "su2",
"time": "8:00 - 14:30",
"time": "9:00 - 09:30",
"name": "Morning Gymnastics",
"description": "Do you want to start the day of right? Join Marjolein for a healthy and energetic gymnastics session."
},
{
"id": "su3",
"time": "9:30 - 14:30",
"name": "Brunch",
"description": "In order to join the brunch you will have to buy a ticket. You can buy this at wisv.ch/hackticket "
},
{
"id": "su3",
"id": "su4",
"time": "13:30 - 16:00",
"name": "Judging",
"description": "You will have to present a short pitch to the judges."
},
{
"id": "su4",
"id": "su5",
"time": "16:00 - 17:00",
"name": "Award Ceremony",
"description": "During this ceremony we will hand out prizes to the winners of each case"
Expand Down
2 changes: 1 addition & 1 deletion src/components/header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const Header: FunctionalComponent = () => (
<div class={style.text}>

<p> <Icon icon={faCalendarDay}/> 25 and 26 May 2024</p>
<p> <Icon icon={faLocationDot}/> X TU Delft</p>
<p> <Icon icon={faLocationDot}/> X TU Delft Hall 1</p>
</div>
<div class={style.buttons}>
<a href="https://discord.gg/rB2ucUaFnc" target="_blank">
Expand Down
4 changes: 2 additions & 2 deletions src/components/header/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
.buttons {
display: flex;
justify-content: center;
gap: 30px;
gap: 20px;
flex-wrap: wrap;
}

Expand Down Expand Up @@ -69,7 +69,7 @@

small {
color: $primary-color;
font-size: 16px;
font-size: 14px;
font-family: "Krona-One";
}
}
Expand Down
12 changes: 9 additions & 3 deletions src/components/timeline/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -92,26 +92,32 @@
height: 100%;
}
.timelineEntry:nth-child(2) {
grid-column-start: 1;
grid-row-start: 2;
grid-row-end: 3;
height: 100%;
}
.timelineEntry:nth-child(3) {
grid-column-start: 1;
grid-row-start: 4;
grid-row-end: 7;
height: 100%;
}
.timelineEntry:nth-child(3) {
.timelineEntry:nth-child(4) {
grid-column-start: 2;
grid-row-start: 6;
grid-row-end: 8;
height: 100%;
}

.timelineEntry:nth-child(4) {
.timelineEntry:nth-child(5) {
grid-column-start: 1;
grid-row-start: 8;
grid-row-end: 9;
height: 100%;
}

.timelineEntry:nth-child(5) {
.timelineEntry:nth-child(6) {
grid-column-start: 1;
grid-row-start: 7 ;
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/timer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import * as style from "./style.scss";

export const Timer: FunctionalComponent = () => {
const calculateTimeLeft = () => {
const difference = (new Date("2024-05-25T13:00:00")).valueOf() - (new Date()).valueOf()
const difference = (new Date("2024-05-25T13:30:00")).valueOf() - (new Date()).valueOf()

let timeLeft = {};

Expand Down

0 comments on commit 49ddb93

Please sign in to comment.