Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
1d30e43
Fix sponsor image to fit within container; partial circle shape imple…
fisayoadabs Jan 16, 2025
cf49901
Hmt 99/login redirect (#169)
anthonyych4n Jan 16, 2025
889c7c7
Merge branch 'main' of https://github.com/Code-the-Change-YYC/hackath…
fisayoadabs Feb 5, 2025
52ab860
Merge branch 'main' of https://github.com/Code-the-Change-YYC/hackath…
fisayoadabs Mar 29, 2025
31aaf34
Merge branch 'main' of https://github.com/Code-the-Change-YYC/hackath…
fisayoadabs May 20, 2025
61e7176
Merge branch 'main' of https://github.com/Code-the-Change-YYC/hackath…
fisayoadabs Jun 10, 2025
8536b89
Merge branch 'main' of https://github.com/Code-the-Change-YYC/hackath…
fisayoadabs Jul 9, 2025
7bb7071
Merge branch 'main' of https://github.com/Code-the-Change-YYC/hackath…
fisayoadabs Aug 6, 2025
84c1606
Merge branch 'main' of https://github.com/Code-the-Change-YYC/hackath…
fisayoadabs Sep 12, 2025
8877fb7
Merge branch 'main' of https://github.com/Code-the-Change-YYC/hackath…
fisayoadabs Oct 22, 2025
0feee18
Merge branch 'main' of https://github.com/Code-the-Change-YYC/hackath…
fisayoadabs Oct 24, 2025
31ad3ff
Merge branch 'main' of https://github.com/Code-the-Change-YYC/hackath…
fisayoadabs Oct 24, 2025
18769ac
Merge branch 'main' of https://github.com/Code-the-Change-YYC/hackath…
fisayoadabs Oct 26, 2025
532e8a9
Merge branch 'main' of https://github.com/Code-the-Change-YYC/hackath…
fisayoadabs Nov 7, 2025
63805f2
Merge branch 'main' of https://github.com/Code-the-Change-YYC/hackath…
fisayoadabs Nov 7, 2025
a0154cf
feat: changed countdown timer to utc
fisayoadabs Nov 7, 2025
3e33243
feat: changed start/end time to correct dates
fisayoadabs Nov 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/LandingPage/HeroSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export default async function HeroSection() {
return <div>Hackathon hasn't been created yet</div>;
}

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

return (
<div className="relative flex flex-col items-center justify-center md:px-8 md:py-16 lg:px-32">
Expand Down
4 changes: 2 additions & 2 deletions src/components/teamRegistration/TeamConfirmation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import client from "@/components/_Amplify/AmplifyBackendClient";
import { Underline } from "@/utils/text-utils";
import PurpleButton from "../PurpleButton";
import CalendarSection from "./CalendarSection";

Check warning on line 5 in src/components/teamRegistration/TeamConfirmation.tsx

View workflow job for this annotation

GitHub Actions / Run ESLint Scanning

'CalendarSection' is defined but never used
import CountdownWindow from "./CountdownWindow";
import TeamInformation from "./TeamInformation";

Expand All @@ -23,8 +23,8 @@
return <div>Hackathon hasn't been created yet</div>;
}

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

return (
<>
Expand Down
Loading