Coming Soon Website
Our website is under construction. We’re working hard to improve our
website and we’ll be ready to launch after
29
Days
Days
02
Hours
Hours
06
Minutes
Minutes
08
Seconds
Seconds
Subscribe now to get the latest updates!
const targetDate=new Date("December 31, 2026 23:59:59").getTime();
setInterval(()=>{
const now=new Date().getTime();
const distance=targetDate-now;
const days=Math.floor(distance/(1000*60*60*24));
const hours=Math.floor((distance%(1000*60*60*24))/(1000*60*60));
const minutes=Math.floor((distance%(1000*60*60))/(1000*60));
const seconds=Math.floor((distance%(1000*60))/1000);
document.getElementById("days").innerHTML=days; document.getElementById("hours").innerHTML=hours; document.getElementById("minutes").innerHTML=minutes; document.getElementById("seconds").innerHTML=seconds;
},1000);