/* FinalCTA.jsx + Footer.jsx — Last waitlist field + inverted footer. */ function FinalCTA() { const [sent, setSent] = React.useState(false); return ( Early access Get on the waitlist. We're letting people in slowly. Drop your email and we'll send your invite when it's your turn — no marketing, no drip, no sharing. {sent ? ( ✓ You're on the list — we'll be in touch. ) : ( { e.preventDefault(); setSent(true); }}> Join the waitlist )} We'll email you once. You can unsubscribe in one click. ); } function Footer() { return ( ); } window.FinalCTA = FinalCTA; window.Footer = Footer;
We're letting people in slowly. Drop your email and we'll send your invite when it's your turn — no marketing, no drip, no sharing.
✓ You're on the list — we'll be in touch.
We'll email you once. You can unsubscribe in one click.