From 692a88a361e8627f049617d27af8a04318912ad0 Mon Sep 17 00:00:00 2001 From: Randula Mawaththa Date: Fri, 16 Aug 2024 01:51:10 +0530 Subject: [PATCH] feat: Updated timer Signed-off-by: Randula Mawaththa --- app/_components/Home/CountdownTimer/index.jsx | 4 ++-- app/_components/Home/CountdownTimer/timer.jsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/_components/Home/CountdownTimer/index.jsx b/app/_components/Home/CountdownTimer/index.jsx index 1355b16..c3a64ef 100644 --- a/app/_components/Home/CountdownTimer/index.jsx +++ b/app/_components/Home/CountdownTimer/index.jsx @@ -8,10 +8,10 @@ export default function CountdownTimer() {

- Awareness Session + Round 1 Registrations

- Coming Soon! + Happening Now!

diff --git a/app/_components/Home/CountdownTimer/timer.jsx b/app/_components/Home/CountdownTimer/timer.jsx index 7a6d9a7..2ea9f7b 100644 --- a/app/_components/Home/CountdownTimer/timer.jsx +++ b/app/_components/Home/CountdownTimer/timer.jsx @@ -2,7 +2,7 @@ import { useState, useEffect } from "react"; export default function Timer() { - const targetDate = new Date("2024-08-15T19:30:00"); + const targetDate = new Date("2024-08-26T00:00:00"); const calculateTimeLeft = () => { const now = new Date();