// WarningBanner — the red rental-empire callout from the poster
function WarningBanner() {
  return (
    <section className="section">
      <div className="warning">
        <div className="warning-icon">⚠</div>
        <div className="warning-body">
          The blob doesn't need you. You're an <em>F1 button</em>.<br/>
          They form you up at 0200. You watch the kill from a Titan.<br/>
          They turned this game into a <em>calendar app</em>.<br/>
          <strong>Undock. Shoot things. Remember why you started playing.</strong>
        </div>
      </div>
      <div className="rallying-cry">UNDOCK · FIGHT · LEARN</div>
      <div className="rallying-sub">Big Yoshi Energy Inc. · Lowsec, independent, recruiting.</div>
    </section>
  );
}
window.WarningBanner = WarningBanner;
