diff --git a/js/dashboard.js b/js/dashboard.js index 8dfb934..f0e251b 100755 --- a/js/dashboard.js +++ b/js/dashboard.js @@ -565,12 +565,12 @@ function setDailyMessage() { } function startCountdown() { - const target = new Date('2026-05-27T00:00:00'); - document.getElementById('countdownLabel').textContent = 'Eid'; + const target = new Date('2026-08-01T00:00:00'); + document.getElementById('countdownLabel').textContent = 'Wedding'; function update() { const diff = target - new Date(); if (diff <= 0) { - document.getElementById('countdownDisplay').innerHTML = '
Eid is now
'; + document.getElementById('countdownDisplay').innerHTML = 'Nikah is now
'; return; } document.getElementById('cd-days').textContent = String(Math.floor(diff / 86400000)).padStart(3, '0');