Skip to content

Commit

Permalink
Updated date and location (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobreinwald authored Feb 15, 2024
1 parent 4111ca1 commit 99e095d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
8 changes: 4 additions & 4 deletions src/components/HomePage/Banner.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const useStyles = makeStyles(theme => ({
text: {
color: 'white',
fontWeight: 400,
textAlign: 'left',
textAlign: 'right',
justifyItems: 'left',
[theme.breakpoints.down('sm')]: {
textAlign: 'center'
Expand Down Expand Up @@ -210,7 +210,7 @@ function Banner() {
</NoSsr>

<Typography variant='h5' className={classes.text} component='h3'
style={{ fontWeight: 500, marginTop: 10 }}><b>Location:</b> The Hill, room TBD
style={{ fontWeight: 500, marginTop: 10 }}><b>Location:</b> Carnesale Commons, Palisades Room
</Typography>

<Box display='flex' alignItems='left' color='white'>
Expand All @@ -226,9 +226,9 @@ function Banner() {
component='h3'
>
<time dateTime={hothStart.toISOString()} hidden>
{month} {startDay}{endDayString}, 2022
{month} {startDay}{endDayString}, 2024
</time>
<b>Date:</b> Saturday, March 2, 2024
<b>Date:</b> Sunday, March 3, 2024
</Typography>
</Tooltip>
</Box>
Expand Down
6 changes: 3 additions & 3 deletions src/components/HomePage/FAQSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ AccordionQA.propTypes = {
function FAQSection() {
const hothNum = 'XI';
const appDeadline = 'Monday, February 26, 2024';
const hothDate = 'Saturday, March 2, 2024';
const hothLocation = 'Hill';
const hothDate = 'Sunday, March 3, 2024';
const hothLocation = 'Carnesale Commons, Palisades Room';
const faqs = [
{
question: `What's a hackathon?`,
Expand Down Expand Up @@ -162,7 +162,7 @@ function FAQSection() {
},
{
question: `What if I have never made a project before?`,
answer: `No worries! Throughout HOTH ${hothNum}, you'll have access to workshops on all sorts of
answer: `No worries! Throughout HOTH ${hothNum}, you'll have access to workshops on all sorts of
topics to help you start bringing your ideas to life and mentors to support you through
any road blocks.`
},
Expand Down
3 changes: 2 additions & 1 deletion src/components/HomePage/HothDescription.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ export default function HothDescription() {
Hack on the Hill (HOTH XI) is a{' '}
<strong>12-hour beginner-friendly</strong>
{' '}hackathon designed to be your first hackathon experience.
HOTH XI will be in-person on the Hill with the specific room TBD. We hope to see you there!
HOTH XI will be in-person on the Hill in the Carnesale Commons Palisades Room.
We hope to see you there!
</Typography>
</RightGridItem>
</Grid>
Expand Down
4 changes: 2 additions & 2 deletions src/components/constants.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const hothStart = new Date('2024-03-02T08:00:00-08:00');
export const hothEnd = new Date('2024-03-02T23:00:00-08:00');
export const hothStart = new Date('2024-03-03T08:00:00-08:00');
export const hothEnd = new Date('2024-03-03T23:00:00-08:00');
export const applyDeadline = new Date('2024-02-26T23:59:59-08:00');
export const applicationOpen = new Date('2024-01-29T08:00:00-08:00');
export const scheduleAvailableTime = new Date('2024-02-26T08:00:00-08:00');

0 comments on commit 99e095d

Please sign in to comment.