-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'implement-banner-and-timeline' into basic-style
- Loading branch information
Showing
16 changed files
with
357 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,60 @@ | ||
{ | ||
"saturday": [ | ||
{ | ||
"time": "12:00", | ||
"id": "sa1", | ||
"time": "12:00 - 13:00", | ||
"name": "Walk-in", | ||
"description": "We will welcome you in hall X1 of TU Delft X! You then have a bit of time to get settled in before the hacking starts." | ||
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit." | ||
}, | ||
{ | ||
"time": "13:00", | ||
"name": "Opening Presentation", | ||
"description": "Here you will finally be introduced to the challenges, and get other important information about the event. If you don't have a team yet, you can form it here." | ||
"id": "sa2", | ||
"time": "13:00 - 14:00", | ||
"name": "Opening", | ||
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. " | ||
}, | ||
{ | ||
"time": "14:00", | ||
"name": "Start Hacking!", | ||
"description": "After the challenges have been divided you can now get started on your project. We are excited to see what you will come up with!" | ||
"id": "sa3", | ||
"time": "14:00 - 00:00", | ||
"name": "Hacking!", | ||
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. " | ||
}, | ||
{ | ||
"id": "sa4", | ||
"time": "18:30 - 20:00", | ||
"name": "Dinner", | ||
"description": "" | ||
} | ||
], | ||
"sunday": [ | ||
{ | ||
"id": "su1", | ||
"time": "00:00 - 14:00", | ||
"name": "Hacking!", | ||
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. " | ||
}, | ||
{ | ||
"id": "su2", | ||
"time": "8:00 - 10:00", | ||
"name": "Breakfast", | ||
"description": "" | ||
}, | ||
{ | ||
"id": "su3", | ||
"time": "12:30 - 14:30", | ||
"name": "Lunch", | ||
"description": "" | ||
}, | ||
{ | ||
"time": "14:00", | ||
"name": "Hacking Ends", | ||
"description": "It has been 24 hours since we started! Now it's time to pitch your project to the jury." | ||
}, | ||
{ | ||
"time": "14:30", | ||
"id": "su4", | ||
"time": "14:30 - 16:00", | ||
"name": "Networking Drinks", | ||
"description": "Talk to your fellow hackers at the drinks after the hacking has ended." | ||
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. " | ||
}, | ||
{ | ||
"time": "± 16:00", | ||
"id": "su5", | ||
"time": "16:00 - 17:00", | ||
"name": "Award Ceremony", | ||
"description": "We have a lot of prizes to award here, maybe to you?" | ||
"description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. " | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ $breakpoints: ( | |
@content; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,32 @@ | ||
import { h, FunctionalComponent } from "preact"; | ||
import { faCalendarDay, faLocationDot } from "@fortawesome/free-solid-svg-icons"; | ||
|
||
|
||
import * as style from "./style.scss"; | ||
|
||
import icon from "url:/static/HogeResolutieLogo.png?as=webp&width=500"; | ||
import { Icon } from "/src/components/icon"; | ||
|
||
|
||
/** | ||
* Renders the header of the site. | ||
*/ | ||
export const Header: FunctionalComponent = () => ( | ||
<header class={style.header}> | ||
<img src={icon} alt="HackDelft" /> | ||
<span> | ||
<h2>Date: May 25th & May 26th</h2> | ||
<h3>Location: TU Delft X</h3> | ||
</span> | ||
<div class={style.container}> | ||
<img src={icon} alt="HackDelft" /> | ||
<div class={style.text}> | ||
|
||
<p> <Icon icon={faCalendarDay}/> 25 and 26 may 2024</p> | ||
<p> <Icon icon={faLocationDot}/> X TU Delft</p> | ||
</div> | ||
<div class={style.buttons}> | ||
{/* TODO: uncomment when tickets are online */} | ||
{/* <button>Tickets</button> */} | ||
{/* <button class={style.secondary}>Join Discord</button> */} | ||
<button href="https://discord.gg/rB2ucUaFnc" target="_blank">Join Discord</button> | ||
</div> | ||
</div> | ||
|
||
</header> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import * as style from "./style.scss"; | ||
import { h, FunctionalComponent } from "preact"; | ||
import { faStopwatch } from "@fortawesome/free-solid-svg-icons"; | ||
import { Icon } from "/src/components/icon"; | ||
|
||
|
||
export const Navigation: FunctionalComponent = () => ( | ||
<section class={style.navigation}> | ||
<div> | ||
<a>About us</a> | ||
<a>Timetable</a> | ||
<a>Pictures</a> | ||
<a>Themes</a> | ||
<a>FAQ</a> | ||
<a>Sponsors</a> | ||
<a>Contact</a> | ||
<span class={style.time}><span class={style.icon}><Icon icon={faStopwatch}/></span>05d 05h 05m 05s</span> | ||
</div> | ||
</section> | ||
); |
Oops, something went wrong.