From d4f24eea6ab7bd400c7e7f951aed64ef26a29967 Mon Sep 17 00:00:00 2001 From: Zaine Date: Wed, 17 Jun 2026 20:53:21 +0100 Subject: [PATCH] updates for zone --- js/dashboard.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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');