/* global React */

const TEST_URL = 'https://formflow.capogrowth.com/form/8b080cce-2142-4d35-b643-d5b1f1c98689';

function HomeTest() {
  return (
    <section className="htest" id="test">
      <div className="htest-inner htest-simple">
        <div className="eyebrow" style={{ marginBottom: 16 }}>TEST DE ORATORIA</div>
        <h2 className="htest-simple-title">
          ¿Cuál es tu nivel de <span className="kw">Oratoria</span>?
        </h2>
        <p className="htest-simple-desc">
          En menos de 1 minuto descubrí que tan bueno/a sos comunicándote con este test.<br />
          ¡Es fácil y súper rápido hacerlo!
        </p>
        <a
          className="acmp-btn acmp-btn-primary"
          href={TEST_URL}
          target="_blank"
          rel="noopener noreferrer"
          style={{ textDecoration: 'none', display: 'inline-block' }}>
          Empezar el test →
        </a>
      </div>
    </section>
  );
}

Object.assign(window, { HomeTest });
