From d96f57d18c7dc3cc498047edb1b2a1cf12ed5d6c Mon Sep 17 00:00:00 2001 From: sajochems Date: Mon, 9 Oct 2023 11:41:49 +0200 Subject: [PATCH] Deleted information irrelevant to our event and changed the colors --- data/sponsors.json | 46 +------------------ data/sponsors.ts | 17 ------- data/timeline.json | 20 --------- src/.github/workflows/docker.yml | 34 -------------- src/_variables.scss | 6 +-- src/components/about/index.tsx | 9 ++-- src/components/committee/index.tsx | 32 +++++++------- src/components/header/index.tsx | 2 +- src/components/photos/index.tsx | 2 +- src/components/sponsors/index.tsx | 1 + src/data/faq.json | 50 --------------------- src/data/photos.ts | 24 ---------- src/data/sponsors.json | 70 ----------------------------- src/data/sponsors.ts | 26 ----------- src/data/timeline.json | 71 ------------------------------ 15 files changed, 28 insertions(+), 382 deletions(-) delete mode 100644 src/.github/workflows/docker.yml delete mode 100644 src/data/faq.json delete mode 100644 src/data/photos.ts delete mode 100644 src/data/sponsors.json delete mode 100644 src/data/sponsors.ts delete mode 100644 src/data/timeline.json diff --git a/data/sponsors.json b/data/sponsors.json index 0b90a34..7261e17 100644 --- a/data/sponsors.json +++ b/data/sponsors.json @@ -18,53 +18,11 @@ { "type": "primary", "title": "Primary", - "items": [ - { - "logoKey": "cgi", - "url": "https://www.cgi.com/en", - "title": "CGI" - }, - { - "logoKey": "ind", - "url": "https://ind.nl/over-ind/werken-bij-de-IND/Paginas/default.aspx", - "title": "Immigratie- en Naturalisatiedienst" - } - ] + "items": [] }, { "type": "secondary", "title": "Supporting", - "items": [ - { - "logoKey": "ded", - "url": "https://www.dutchenergydrink.nl/", - "title": "Dutch Energy Drink" - }, - { - "logoKey": "elastic", - "url": "https://www.elastic.co/", - "title": "Elastic" - }, - { - "logoKey": "koro", - "url": "https://koro-handels-gmbh.jobs.personio.de/", - "title": "KoRo" - }, - { - "logoKey": "bit", - "url": "https://wearebit.com/join-us/", - "title": "Bit" - }, - { - "logoKey": "bwl", - "url": "https://www.biteswelove.nl/", - "title": "Bites We Love" - }, - { - "logoKey": "kleine", - "url": "https://www.dekleineconsultant.nl/", - "title": "De Kleine Consultant" - } - ] + "items": [] } ] diff --git a/data/sponsors.ts b/data/sponsors.ts index ebed32e..85f5d61 100644 --- a/data/sponsors.ts +++ b/data/sponsors.ts @@ -6,21 +6,4 @@ export const sponsorLogoMap: { [key: string]: URL } = { "/static/sponsors/xtudelft.png?as=webp&width=200", import.meta.url ), - cgi: new URL("/static/sponsors/cgi.png?as=webp&width=200", import.meta.url), - elastic: new URL( - "/static/sponsors/elastic.png?as=webp&width=200", - import.meta.url - ), - ded: new URL("/static/sponsors/ded.png?as=webp&width=200", import.meta.url), - koro: new URL( - "/static/sponsors/koro.png?as=webp&width=200", - import.meta.url - ), - bit: new URL("/static/sponsors/bit.png?as=webp&width=200", import.meta.url), - bwl: new URL("/static/sponsors/bwl.png?as=webp&width=200", import.meta.url), - ind: new URL("/static/sponsors/ind.png?as=webp&width=200", import.meta.url), - kleine: new URL( - "/static/sponsors/kleine.png?as=webp&width=200", - import.meta.url - ), }; diff --git a/data/timeline.json b/data/timeline.json index 03d7b72..8953fe5 100644 --- a/data/timeline.json +++ b/data/timeline.json @@ -15,11 +15,6 @@ "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!" }, - { - "time": "± 17:00", - "name": "Workshop - Elastic", - "description": "In this workshop Elastic will give an introduction to their platform, and how you can use it for your project." - }, { "time": "18:30 - 20:00", "name": "Dinner", @@ -27,26 +22,11 @@ } ], "sunday": [ - { - "time": "7:00", - "name": "Morning Gymnastics", - "description": "Get a fresh start of the day with Cas and Berend" - }, { "time": "8:00 - 10:00", "name": "Breakfast", "description": "" }, - { - "time": "± 10:00", - "name": "Workshop - Bit", - "description": "Our supporting partner Bit has a talk prepared!" - }, - { - "time": "± 12:00", - "name": "Pitch Workshop", - "description": "De Kleine Consultant will come and prepare you for your pitch at 14:00!" - }, { "time": "12:30 - 14:30", "name": "Lunch", diff --git a/src/.github/workflows/docker.yml b/src/.github/workflows/docker.yml deleted file mode 100644 index ec5f006..0000000 --- a/src/.github/workflows/docker.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Docker -on: - push: - schedule: - - cron: "42 2 2 * *" - workflow_dispatch: -jobs: - buildDockerImage: - name: Build Docker image - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v2 - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v1 - - name: Login to GitHub Container Registry - uses: docker/login-action@v1 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - name: Docker meta - id: meta - uses: docker/metadata-action@v3 - with: - images: ghcr.io/wisvch/hackdelft-2022 - tags: type=sha, prefix={{date 'YYYYMMDD'}}- - - name: Build and push Docker image - uses: docker/build-push-action@v2 - with: - context: . - tags: ${{ steps.meta.outputs.tags }} - labels: ${{ steps.meta.outputs.labels }} - push: ${{ github.ref == 'refs/heads/main' }} diff --git a/src/_variables.scss b/src/_variables.scss index 8bba036..62bc5ad 100644 --- a/src/_variables.scss +++ b/src/_variables.scss @@ -1,6 +1,6 @@ -$background-color: #181226; -$primary-color: #f7931e; -$secondary-color: #662d91; +$background-color: #002E78; +$primary-color: #389EE9; +$secondary-color: #DB00FF; $tu-color: #00a6d6; $discord-color: #7289da; diff --git a/src/components/about/index.tsx b/src/components/about/index.tsx index 24545be..d004c9b 100644 --- a/src/components/about/index.tsx +++ b/src/components/about/index.tsx @@ -13,23 +13,22 @@ export const About: FunctionalComponent = () => (

About

- Join us on April 30th and May 1st in this all-inclusive 24 hour + Join us on May 25th and May 26th in this all-inclusive 24 hour hackathon where you solve fun challenges provided by our partner companies, win prizes, and have a good time!

- We are completely sold out, but you can still sign up for the - waiting list. + Tickets are not available yet but check back here soon!

- Sign up for the waiting list! - + */} (
-
+ {/*
HackDelft Committee -
+
*/}

Meet The Committee

-

From left to right

+ {/*

From left to right

*/} - - - - - - + + - + - - + + - - + + - + + + + + - +
The Head of AcquisitionBerend Krouwels
The Head of LogisticsAnnerieke OhmThe ChairMarit Radder
The SecretaryNina ImmigMarjolein van den Berghe
The ChairmanDany SluijkThe TreasurerMerle de Jong
The TreasurerNiels van den DoolThe Head of LogisticsMarijn van der Tuin
The Commissioner of Promotional AffairsRicardo VogelSimon Deuten
The Head of AcquisitionScott Jochems
The Qualitate QuaCas WeverRobert van Dijk
diff --git a/src/components/header/index.tsx b/src/components/header/index.tsx index 987d4b9..dac3121 100644 --- a/src/components/header/index.tsx +++ b/src/components/header/index.tsx @@ -11,7 +11,7 @@ export const Header: FunctionalComponent = () => (
HackDelft -

Date: April 30th & May 1st

+

Date: May 25th & May 26th

Location: TU Delft X

diff --git a/src/components/photos/index.tsx b/src/components/photos/index.tsx index 45b1057..0a8dbfd 100644 --- a/src/components/photos/index.tsx +++ b/src/components/photos/index.tsx @@ -54,7 +54,7 @@ export const Photos: FunctionalComponent = () => {

Photos

- Take a look at last edition to get an impression of the event. + Take a look at a previous edition to get an impression of the event.

{ return (

{category.title}

+

More too be announced!

    {sponsors.map((sponsor: Sponsor) => (
  • diff --git a/src/data/faq.json b/src/data/faq.json deleted file mode 100644 index 93ca311..0000000 --- a/src/data/faq.json +++ /dev/null @@ -1,50 +0,0 @@ -[ - { - "question": "Who can attend?", - "answer": "Any current university student can attend HackDelft." - }, - { - "question": "How can I sign up for HackDelft?", - "answer": "Unfortunately we are completely sold out! Use the button on top of the page to sign up for the waiting list." - }, - { - "question": "What languages can I use during the event?", - "answer": "You can use any language or tool you want during the event!" - }, - { - "question": "What is the maximum group size?", - "answer": "There is a limit of four participants per group. Do you have more friends? You can join in multiple groups! Don't know who joins you yet? You can form your groups later, or even at the event itself." - }, - { - "question": "What if I've never been to a hackathon before?", - "answer": "HackDelft is a very beginner friendly hackathon, so that is no issue! At the start of the hackathon we will explain how the weekend works, after which you can start hacking with your team." - }, - { - "question": "Can I still participate if I am not a programmer?", - "answer": "Yes! We have some challenges specifically designed for you. These challenges don't require a lot of programming experience, and are more focused on mathematics." - }, - { - "question": "Can I start working on my submission before the event begins?", - "answer": "No, this is not allowed. The challenges will also not be announced before the event starts." - }, - { - "question": "How much will it cost to attend HackDelft?", - "answer": "The price has been set at 1,- for the entire weekend. In return you can hack away all weekend, get three meals, and much more!" - }, - { - "question": "What do I need to bring to the event?", - "answer": "You will have to bring your laptop, some chargers, and an air mattress with sleeping bag if you intent to sleep. Some hygiene items will also be appreciated by other hackers." - }, - { - "question": "What will the Covid-19 measures look like at the event?", - "answer": "We fill follow the recommendations of the Dutch government with regards to Covid-19. Currently there are no restrictions in place, but we will keep a close eye on any changes as the event approaches." - }, - { - "question": "Do you provide any travel reimbursement?", - "answer": "Unfortunately, we do not provide any travel reimbursement. We hope to see you at the event regardless!" - }, - { - "question": "My question is not in here!", - "answer": "Send us an email at `hackdelft@ch.tudelft.nl`, and we will be happy to help you out!" - } -] diff --git a/src/data/photos.ts b/src/data/photos.ts deleted file mode 100644 index b439989..0000000 --- a/src/data/photos.ts +++ /dev/null @@ -1,24 +0,0 @@ -// Create an array with all photos. -// This is required as the bundler (currently) cannot currently read the contents of the photo folder -export const photosMap: URL[] = [ - new URL("/static/photos/YAW01116.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01127.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01268.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01272.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01275.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01280.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01287.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01289.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01296.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01298.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01349.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01399.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01429.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01437.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01448.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01449.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01454.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01640.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01727.jpg?as=webp&width=1200", import.meta.url), - new URL("/static/photos/YAW01760.jpg?as=webp&width=1200", import.meta.url), -]; diff --git a/src/data/sponsors.json b/src/data/sponsors.json deleted file mode 100644 index 0b90a34..0000000 --- a/src/data/sponsors.json +++ /dev/null @@ -1,70 +0,0 @@ -[ - { - "type": "organisation", - "title": "Organisation", - "items": [ - { - "logoKey": "ch", - "url": "https://wisv.ch/", - "title": "W.I.S.V. Christiaan Huygens" - }, - { - "logoKey": "xtudelft", - "url": "https://www.tudelft.nl/en/x/", - "title": "X TU Delft" - } - ] - }, - { - "type": "primary", - "title": "Primary", - "items": [ - { - "logoKey": "cgi", - "url": "https://www.cgi.com/en", - "title": "CGI" - }, - { - "logoKey": "ind", - "url": "https://ind.nl/over-ind/werken-bij-de-IND/Paginas/default.aspx", - "title": "Immigratie- en Naturalisatiedienst" - } - ] - }, - { - "type": "secondary", - "title": "Supporting", - "items": [ - { - "logoKey": "ded", - "url": "https://www.dutchenergydrink.nl/", - "title": "Dutch Energy Drink" - }, - { - "logoKey": "elastic", - "url": "https://www.elastic.co/", - "title": "Elastic" - }, - { - "logoKey": "koro", - "url": "https://koro-handels-gmbh.jobs.personio.de/", - "title": "KoRo" - }, - { - "logoKey": "bit", - "url": "https://wearebit.com/join-us/", - "title": "Bit" - }, - { - "logoKey": "bwl", - "url": "https://www.biteswelove.nl/", - "title": "Bites We Love" - }, - { - "logoKey": "kleine", - "url": "https://www.dekleineconsultant.nl/", - "title": "De Kleine Consultant" - } - ] - } -] diff --git a/src/data/sponsors.ts b/src/data/sponsors.ts deleted file mode 100644 index ebed32e..0000000 --- a/src/data/sponsors.ts +++ /dev/null @@ -1,26 +0,0 @@ -// Create an object, mapping the logo key to the URL out of the bundler. -// This is required as the bundler (currently) cannot currently read the images from the JSON URL's directly. -export const sponsorLogoMap: { [key: string]: URL } = { - ch: new URL("/static/sponsors/ch.png?as=webp&width=200", import.meta.url), - xtudelft: new URL( - "/static/sponsors/xtudelft.png?as=webp&width=200", - import.meta.url - ), - cgi: new URL("/static/sponsors/cgi.png?as=webp&width=200", import.meta.url), - elastic: new URL( - "/static/sponsors/elastic.png?as=webp&width=200", - import.meta.url - ), - ded: new URL("/static/sponsors/ded.png?as=webp&width=200", import.meta.url), - koro: new URL( - "/static/sponsors/koro.png?as=webp&width=200", - import.meta.url - ), - bit: new URL("/static/sponsors/bit.png?as=webp&width=200", import.meta.url), - bwl: new URL("/static/sponsors/bwl.png?as=webp&width=200", import.meta.url), - ind: new URL("/static/sponsors/ind.png?as=webp&width=200", import.meta.url), - kleine: new URL( - "/static/sponsors/kleine.png?as=webp&width=200", - import.meta.url - ), -}; diff --git a/src/data/timeline.json b/src/data/timeline.json deleted file mode 100644 index 03d7b72..0000000 --- a/src/data/timeline.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "saturday": [ - { - "time": "12: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." - }, - { - "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." - }, - { - "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!" - }, - { - "time": "± 17:00", - "name": "Workshop - Elastic", - "description": "In this workshop Elastic will give an introduction to their platform, and how you can use it for your project." - }, - { - "time": "18:30 - 20:00", - "name": "Dinner", - "description": "" - } - ], - "sunday": [ - { - "time": "7:00", - "name": "Morning Gymnastics", - "description": "Get a fresh start of the day with Cas and Berend" - }, - { - "time": "8:00 - 10:00", - "name": "Breakfast", - "description": "" - }, - { - "time": "± 10:00", - "name": "Workshop - Bit", - "description": "Our supporting partner Bit has a talk prepared!" - }, - { - "time": "± 12:00", - "name": "Pitch Workshop", - "description": "De Kleine Consultant will come and prepare you for your pitch at 14:00!" - }, - { - "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", - "name": "Networking Drinks", - "description": "Talk to your fellow hackers at the drinks after the hacking has ended." - }, - { - "time": "± 16:00", - "name": "Award Ceremony", - "description": "We have a lot of prizes to award here, maybe to you?" - } - ] -}