const roadmap = [ [ {titles:["Launch Astrovault"], date:"2024"}, {titles:["Outbid launch,","AXV token launch"], date:"2025"}, {titles:["Airdrop is started 25.01"], date:"2026"}, {titles:["Deploy 2nd Astrovault,","Deploy 2nd Outbid"], date:"2026"} ], [ {titles:["Governance,","Deploy 3rd Astrovault"], date:"2026"}, {titles:["B2B NFTs","B2B Payments"], date:"2026"}, {titles:["EVM Deployment"], date:"2026"} ] ]; function apply(){ const sections = document.querySelectorAll('section.aboutSectionRoadmap'); sections.forEach(function(section, si){ const items = section.querySelectorAll('li'); (roadmap[si] || []).forEach(function(spec, ii){ const item = items[ii]; if (!item) return; const headers = item.querySelectorAll('h3'); spec.titles.forEach(function(title, ti){ if (headers[ti]) headers[ti].textContent = title; }); const p = item.querySelector('p'); if (p && spec.date) p.textContent = spec.date; }); }); } if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', apply); } else { apply(); } new MutationObserver(apply).observe(document.body, { childList: true, subtree: true }); })();