From 7fc321f058411d55a31f073fd0218dc23f4cbebc Mon Sep 17 00:00:00 2001 From: Dinil Thilakarathne <126305123+Dinil-Thilakarathne@users.noreply.github.com> Date: Mon, 9 Jun 2025 08:52:24 +0530 Subject: [PATCH 1/2] fix(timer): adjust heading text size for better visibility 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 3ab479f..d9569d0 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 08:52:28 +0530 Subject: [PATCH 2/2] fix(data): update start time for final round event to 09:15 IST --- libs/data.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/data.ts b/libs/data.ts index 963fdb2..67a1d4a 100644 --- a/libs/data.ts +++ b/libs/data.ts @@ -168,6 +168,6 @@ export const SPONSORS: SponsorLogoProps[] = [ }, ]; -export const START_TIME = new Date("2025-06-09T09:00:00"); +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 CRITICAL_HOURS = 1; // Critical period in hours (e.g., 3 hours before the end)