Skip to content

Commit 3d9a866

Browse files
fisayoadabsanthonyych4nburtonjong
authored
Countdown timer (#269)
Co-authored-by: Anthony <88424536+anthonyych4n@users.noreply.github.com> Co-authored-by: Burton Jong <108391733+burtonjong@users.noreply.github.com>
1 parent e1e5fd2 commit 3d9a866

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/components/LandingPage/HeroSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ export default async function HeroSection() {
1919
return <div>Hackathon hasn't been created yet</div>;
2020
}
2121

22-
const eventStartDate = new Date(2025, 10, 8, 9, 0, 0); // Month is 0-indexed → 10 = November
23-
const eventEndDate = new Date(2025, 10, 9, 17, 0, 0); // Example: Sunday 5 PM
22+
const eventStartDate = new Date(2025, 10, 8, 9, 30, 0); // Month is 0-indexed → 10 = November
23+
const eventEndDate = new Date(2025, 10, 9, 18, 0, 0); // Example: Sunday 5 PM
2424

2525
return (
2626
<div className="relative flex flex-col items-center justify-center md:px-8 md:py-16 lg:px-32">

src/components/teamRegistration/TeamConfirmation.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ export default async function TeamConfirmation({
2323
return <div>Hackathon hasn't been created yet</div>;
2424
}
2525

26-
const eventStartDate = new Date(2025, 10, 8, 9, 0, 0); // Month is 0-indexed → 10 = November
27-
const eventEndDate = new Date(2025, 10, 9, 17, 0, 0); // Example: Sunday 5 PM
26+
const eventStartDate = new Date(2025, 10, 8, 9, 30, 0); // Month is 0-indexed → 10 = November
27+
const eventEndDate = new Date(2025, 10, 9, 18, 0, 0); // Example: Sunday 5 PM
2828

2929
return (
3030
<>

0 commit comments

Comments
 (0)