Coming Soon

Segera Hadir!

Website kami sedang dalam tahap pembangunan. Nantikan update terbaru.

00
Hari
00
Jam
00
Menit
00
Detik
const countdown = () => { const targetDate = new Date("2026-06-01T00:00:00").getTime(); const now = new Date().getTime(); const difference = targetDate - now; const days = Math.floor(difference / (1000 * 60 * 60 * 24)); const hours = Math.floor((difference % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); const minutes = Math.floor((difference % (1000 * 60 * 60)) / (1000 * 60)); const seconds = Math.floor((difference % (1000 * 60)) / 1000); document.getElementById("days").innerText = days.toString().padStart(2, '0'); document.getElementById("hours").innerText = hours.toString().padStart(2, '0'); document.getElementById("minutes").innerText = minutes.toString().padStart(2, '0'); document.getElementById("seconds").innerText = seconds.toString().padStart(2, '0'); } setInterval(countdown, 1000);
x server