Skip to content

Commit

Permalink
Update countdown to be for start time
Browse files Browse the repository at this point in the history
  • Loading branch information
alanchangxyz committed May 24, 2024
1 parent 5b86025 commit 2994a1a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/app/views/schedule/Schedule.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import {
import "./Schedule.scss";
import { Container } from "react-bootstrap";

const HACKING_DEADLINE = "26 May 2024 09:00:00 PDT";
const HACKING_DEADLINE = "24 May 2024 21:00:00 PDT";
// const HACKING_DEADLINE = "26 May 2024 09:00:00 PDT";

const Schedule = () => (
<div className="Schedule">
Expand All @@ -17,14 +18,14 @@ const Schedule = () => (
<img src="../../../assets/images/schedule/schedule-header.png" alt="Schedule Header"></img>
</div>
<h4 className="schedule-hacking-ends-in">
All times in PDT. Hacking ends in:
All times in PDT. Hacking begins in:
</h4>
<div className="schedule-countdown">
<Container className="container-style">
<Countdown date={HACKING_DEADLINE} />
</Container>
</div>
<h4 className="schedule-hacking-ends-in">See you next year!</h4>
<h4 className="schedule-hacking-ends-in">See you soon!</h4>
<ScheduleCard />
</section>
<Footer />
Expand Down

0 comments on commit 2994a1a

Please sign in to comment.