Coming Soon

Buildace Magazine

Buildace Magazine
is Launching Soon

02
Days
00
Hours
00
Minutes
00
Seconds

Buildace Magazine is a global content curation platform that celebrates the achievements of architecture, interior, art and technology. An innovative media platform designed to redefine how the industry professionals connect, showcase projects, interact and facilitate collaboration as a center of connection in the global building and design sectors.

`; return; } 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').textContent = String(days).padStart(2, '0'); document.getElementById('hours').textContent = String(hours).padStart(2, '0'); document.getElementById('minutes').textContent = String(minutes).padStart(2, '0'); document.getElementById('seconds').textContent = String(seconds).padStart(2, '0'); setTimeout(updateCountdown, 1000); } updateCountdown();