Skip to content

Commit

Permalink
Merge pull request #195 from nwplus/dev
Browse files Browse the repository at this point in the history
interest form and date update
  • Loading branch information
joannelex authored Jun 25, 2024
2 parents 27a0eda + 08c310d commit 7b746a3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion components/HackathonCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const HackathonCard = ({ registrationOpen, link, dateString, imageLink }) => {
<OverLayFooterContainer>
<EventDataContainer>
<EventRegistrationStatus registrationOpen={registrationOpen}>
{`${registrationOpen ? 'Registration Open' : 'Registration Closed'}`}
{`${registrationOpen ? 'Interest Form Open' : 'Registration Closed'}`}
</EventRegistrationStatus>
<EventDateString>{dateString}</EventDateString>
</EventDataContainer>
Expand Down
10 changes: 5 additions & 5 deletions components/Hackathons.js
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit 7b746a3

Please sign in to comment.