From 5fe5fb4efa2a9bbc732d55ebb2977fbcded2aa57 Mon Sep 17 00:00:00 2001 From: Sahan Perera Date: Mon, 7 Oct 2024 23:18:52 +0530 Subject: [PATCH] changed the timer --- app/_components/Home/CountdownTimer/timer.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/_components/Home/CountdownTimer/timer.jsx b/app/_components/Home/CountdownTimer/timer.jsx index 0ca9404..8ec7abc 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-10-08T10:00:00"); + const targetDate = new Date("2024-10-08T17:00:00"); const calculateTimeLeft = () => { const now = new Date();