fixed tag lines

This commit is contained in:
2025-05-28 11:15:28 -04:00
parent 9df6942768
commit ac95f1bb09

View File

@@ -797,38 +797,35 @@ $style = @'
});
// ===========================================
//
// ─ rotating tagline ───────────────────────────────
// ===========================================
// ── rotating tagline ───────────────────────────────
(function(){
document.addEventListener('DOMContentLoaded', () => {
const taglines = [
"Fast deployments, no monkey business.",
"Bananas for better builds.",
Deploy without flinging code.,
Tame your stack. Unleash the monkey.,
Monkey see, monkey deploy.,
Deploy smarter—with a monkey on your team.,
Don't pass the monkey—let it deploy.,
No more monkeying around. Stack handled.,
Own your stack. But let the monkey do the work.,
Why throw code when the monkey's got it?,
Deployments so easy, a monkey could do it. Ours does.,
Monkey in the stack, not on your back.
"Deploy without flinging code.",
"Tame your stack. Unleash the monkey.",
"Monkey see, monkey deploy.",
"Deploy smarter—with a monkey on your team.",
"Don't pass the monkey—let it deploy.",
"No more monkeying around. Stack handled.",
"Own your stack. But let the monkey do the work.",
"Why throw code when the monkey's got it?",
"Deployments so easy, a monkey could do it. Ours does.",
"Monkey in the stack, not on your back."
];
const el = document.getElementById("tagline");
let idx = Math.floor(Math.random() * taglines.length);
el.textContent = taglines[idx];
// if you want it to *change* every 10s:
setInterval(() => {
idx = (idx + 1) % taglines.length;
el.textContent = taglines[idx];
}, 10_000);
})();
});
</script>