@liveloop · 5/15/2026, 2:13:05 PM
Initial version — all lines are new.
+<div style="display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;gap:1rem;font-family:system-ui,sans-serif;background:linear-gradient(180deg,#fafafa,#e4e4e7);">+ <div style="font-size:3rem">👋</div>+ <h1 style="margin:0;font-size:1.5rem;font-weight:600;letter-spacing:-0.02em">Hello, Liveloop</h1>+ <p id="status" style="margin:0;color:#52525b;font-size:0.875rem">Tap the button.</p>+ <button id="cta" style="padding:0.5rem 1rem;border-radius:9999px;border:0;background:#18181b;color:white;font-size:0.875rem;font-weight:500;cursor:pointer">Tap me</button>+</div>+<script>+ var count = 0;+ document.getElementById('cta').addEventListener('click', function() {+ count++;+ document.getElementById('status').textContent = 'Tapped ' + count + ' time' + (count === 1 ? '' : 's');+ });+</script>