HYZER TALENT // CONSOLE
READY.

Hello, World!

<script>
(function() {
  const el = document.getElementById("type");
  const pressKeyEl = document.getElementById("pressKey");
  if (!el) return;

  const text = "I have accepted a full time role as Founding Customer Success Lead at <a href='https://tenzo.ai' target='_blank' rel='noopener'>Tenzo AI</a>. I'm pausing my consulting work as I dig into building Tenzo and transforming how talent acquisition teams leverage AI to give every candidate a voice, and recruiters their time back. For speaking opportunities, please reach out to me at jeremy@hyzertalent.com.";

  let i = 0;
  const min = 18;  
  const max = 75;  

  function typeNext() {
    el.innerHTML = text.slice(0, i++);
    if (i <= text.length) {
      const jitter = Math.floor(min + Math.random() * (max - min));
      setTimeout(typeNext, jitter);
    } else {
      setTimeout(showPressKey, 800);
    }
  }

  function showPressKey() {
    pressKeyEl.textContent = "Press any key to contact…";
    pressKeyEl.classList.add("blink");
    document.addEventListener("keydown", function() {
      window.location.href = "mailto:jeremy@hyzertalent.com";
    }, { once: true });
  }

  typeNext();
})();
</script>