From 08c310df3f2dfd50545b2374371b938b0e463d35 Mon Sep 17 00:00:00 2001 From: DonaldKLee Date: Mon, 24 Jun 2024 16:03:22 -0700 Subject: [PATCH] interest form and date update --- components/HackathonCard.js | 2 +- components/Hackathons.js | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/HackathonCard.js b/components/HackathonCard.js index d5d8b05..cf3e3c9 100644 --- a/components/HackathonCard.js +++ b/components/HackathonCard.js @@ -72,7 +72,7 @@ const HackathonCard = ({ registrationOpen, link, dateString, imageLink }) => { - {`${registrationOpen ? 'Registration Open' : 'Registration Closed'}`} + {`${registrationOpen ? 'Interest Form Open' : 'Registration Closed'}`} {dateString} diff --git a/components/Hackathons.js b/components/Hackathons.js index f5e776d..67de9e4 100644 --- a/components/Hackathons.js +++ b/components/Hackathons.js @@ -8,21 +8,21 @@ import Button from './Button'; const HackCampData = { imgSrc: '/assets/HackCamp2023.png', link: 'https://hackcamp.nwplus.io', - date: 'Nov 18 - 19', + date: 'Nov 9 - 10', registrationOpenDate: "Oct 6", open: false, }; const nwHacksData = { imgSrc: '/assets/nwHacks2024.png', link: 'https://nwhacks.io', - date: 'Jan 20 - 21', - open: false, + date: 'Jan 18 - 19', + open: true, }; const cmdfData = { imgSrc: '/assets/cmd-f2024.png', link: 'https://cmd-f.nwplus.io', - date: 'Mar 9 - 10', - open: false, + date: 'Mar 8 - 9', + open: true, }; const HackathonsContainer = styled.div`