From 53a3eb90379ea784efdafe546d703897bc178b81 Mon Sep 17 00:00:00 2001 From: Dinil Thilakarathne <126305123+Dinil-Thilakarathne@users.noreply.github.com> Date: Mon, 9 Jun 2025 09:16:47 +0530 Subject: [PATCH 1/2] fix(timer): adjust heading text size for larger screens in countdown section --- app/timer/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/timer/page.tsx b/app/timer/page.tsx index d9569d0..5c70784 100644 --- a/app/timer/page.tsx +++ b/app/timer/page.tsx @@ -16,7 +16,7 @@ export default function Page() { -

+

Final Countdown: The Race to Patch Begins

Date: Mon, 9 Jun 2025 09:16:51 +0530 Subject: [PATCH 2/2] fix(data): update final round end time to 17:15 IST --- libs/data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/data.ts b/libs/data.ts index 67a1d4a..abd6a56 100644 --- a/libs/data.ts +++ b/libs/data.ts @@ -169,5 +169,5 @@ export const SPONSORS: SponsorLogoProps[] = [ ]; export const START_TIME = new Date("2025-06-09T09:15:00"); -export const END_TIME = new Date("2025-06-09T17:00:00"); // Final round end time +export const END_TIME = new Date("2025-06-09T17:15:00"); // Final round end time export const CRITICAL_HOURS = 1; // Critical period in hours (e.g., 3 hours before the end)