/* Hero.jsx — Ordentus marketing hero. Headline, waitlist, viz card (mini calendar + bedtime + cognition). */ function WaitlistInline() { const [sent, setSent] = React.useState(false); if (sent) { return (

✓ You're on the list — we'll be in touch.

); } return (
{ e.preventDefault(); setSent(true); }}>

We'll email you once. You can unsubscribe in one click. No marketing, no drip, no sharing.

); } function HeroViz() { return ( ); } function Hero() { return (
A personal life portal · private beta

One page for your life.

Your calendars, your body, your mind — beside each other, every morning. Quiet. Plain. Yours alone.

); } window.Hero = Hero;