Modify Retirement date to Valentines Day

This commit is contained in:
Ray 2025-01-12 01:54:14 +11:00 committed by GitHub
parent dfd081f5f6
commit bfa9dd1efd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;