// Sitewide investigational-status notice (regulatory requirement).

const INVESTIGATIONAL_STATEMENT = "The Active Chemistry Exchange System is an investigational device. It is not cleared or approved by the U.S. Food and Drug Administration and is not available for sale.";

function RegNotice() {
  return (
    <div className="reg-notice" role="note">
      <div className="wrap reg-notice__inner">
        <span className="reg-notice__tag">Investigational</span>
        <p className="reg-notice__text">{INVESTIGATIONAL_STATEMENT}</p>
      </div>
    </div>
  );
}

window.RegNotice = RegNotice;
window.INVESTIGATIONAL_STATEMENT = INVESTIGATIONAL_STATEMENT;
