// Nav — minimal, waitlist-only. No sign-in, no pricing.
function Nav({ ctaLabel = "Join the waitlist", ctaStyle = "ink" }) {
  return (
    <nav className="landing-nav">
      <a href="#top" className="snd-logo sm" style={{ textDecoration: "none" }} aria-label="Sendorai home">
        <img className="snd-mark" src="assets/logo/sendorai-mark.svg" alt=""/>
        <span className="snd-wordmark">Sendorai</span>
      </a>
      <div className="links">
        <a href="#how">How it works</a>
        <a href="#why">Why Sendorai</a>
        <a href="#sample">A draft</a>
        <a href="#who">For who</a>
      </div>
      <div className="right">
        <a
          className={"snd-btn " + (ctaStyle === "fern" ? "fern" : "primary")}
          href={window.WAITLIST_URL}
          target="_blank"
          rel="noopener noreferrer"
          style={{ textDecoration: "none" }}
        >
          {ctaLabel}
        </a>
      </div>
    </nav>
  );
}
Object.assign(window, { Nav });
