diff --git a/src/data/Timeline.json b/src/data/Timeline.json index 0b30ef8..ce6c784 100644 --- a/src/data/Timeline.json +++ b/src/data/Timeline.json @@ -33,7 +33,7 @@ { "id": 6, "title": "Final Round", - "dateTime": "30th Of August - 10.00 am", + "dateTime": "25th Of September - 9.00 am", "description": "All teams advancing to round 3 are invited to the physical event at the Sri Lanka Institute of Information Technology Campus, Malabe, to present the project in front of an expert panel. Winners will be selected accordingly." } ] diff --git a/src/views/Header/index.jsx b/src/views/Header/index.jsx index e5ea3f2..9c272fd 100644 --- a/src/views/Header/index.jsx +++ b/src/views/Header/index.jsx @@ -4,11 +4,11 @@ import Logo from "../../assets/logo/mini_hackathon_logo_2023.png"; const Countdown = () => { const isAwarenessSession = false; - let myDate = "30-08-2023"; - myDate = myDate.split("-"); - let newDate = new Date(myDate[2], myDate[1] - 1, myDate[0]); + let currDate = "25-09-2023"; + currDate = currDate.split("-"); + let newDate = new Date(currDate[2], currDate[1] - 1, currDate[0]); let month = newDate.toLocaleString("en-us", { month: "long" }); - // let date = newDate.getDate(); + let date = newDate.getDate(); return (