The urgency bar is fixed at the top of this page. It creates urgency with:
Add this code before the closing </body> tag:
<iframe src="/landing/urgency-bar.html"
style="position:fixed;top:0;left:0;width:100%;height:60px;
border:none;z-index:9999;"></iframe>
Show the urgency bar only to new visitors (not those who've already seen it). Use localStorage to track this:
if (!localStorage.getItem('urgency_shown')) {
// Show bar
localStorage.setItem('urgency_shown', 'true');
}