From bfa9dd1efd624f70e12c7f29783e1b054084e2ff Mon Sep 17 00:00:00 2001 From: Ray Date: Sun, 12 Jan 2025 01:54:14 +1100 Subject: [PATCH] Modify Retirement date to Valentines Day --- src/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.jsx b/src/App.jsx index 121f853..7e137e4 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -6,7 +6,7 @@ const RetirementCountdown = () => { const [prevTimeLeft, setPrevTimeLeft] = useState({}); const calculateTimeLeft = () => { - const retirementDate = new Date('2025-09-02'); // Replace with your retirement date + const retirementDate = new Date('2025-02-14'); // Replace with your retirement date const now = new Date(); const difference = retirementDate - now;