Skip to content

Commit 78c13cf

Browse files
authored
Merge branch 'Penn-Climate-Ventures:main' into main
2 parents d5ee4e0 + f39a6b3 commit 78c13cf

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/countdown/countdown.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const getTimeLeft = (targetDate) => {
1010
return { days, hours, minutes, seconds };
1111
};
1212

13-
const Countdown = ({ targetDate = new Date("2026-01-26T00:00:00") }) => {
13+
const Countdown = ({ targetDate = new Date("2026-03-21T00:00:00") }) => {
1414
const [timeLeft, setTimeLeft] = useState(() => getTimeLeft(targetDate));
1515

1616
useEffect(() => {

src/pages/LandingPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const LandingPage = () => {
2121
<h1 className="title">UPenn Eco-Venture Challenge</h1>
2222
<p className="subheading">Preparing tomorrow's leaders to tackle today's climate crisis!</p>
2323
<p className="subcountdown">ROUND 1 APPLICATION OPENS</p>
24-
<Countdown targetDate={new Date("2026-01-26T00:00:00")} />
24+
<Countdown targetDate={new Date("2026-03-21T00:00:00")} />
2525
<img
2626
src={`${process.env.PUBLIC_URL}/double-arrow-down.png`}
2727
alt="Scroll down"

0 commit comments

Comments
 (0)