// Testimonial, single, large pull quote.
const Testimonial = () => {
  return (
    <section className="k-quote">
      <div className="k-quote__inner">
        <div className="k-quote__mark">&ldquo;</div>
        <blockquote className="k-quote__text">
          With KxWelcome, move-in weekend stopped feeling like a crisis. Our team spend
          their time with families at the door, not with clipboards and spreadsheets.
        </blockquote>
        <div className="k-quote__who">
          <div className="k-quote__avatar" aria-hidden="true">RJ</div>
          <div>
            <div className="k-quote__name">Rose Jamieson</div>
            <div className="k-quote__role">Director of Housing &middot; State University</div>
          </div>
        </div>
      </div>
    </section>
  );
};
window.Testimonial = Testimonial;
