/* 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 (
We'll email you once. You can unsubscribe in one click.
No marketing, no drip, no sharing.
);
}
function HeroViz() {
return (
{/* Calendar slab */}
May 11 – 15
DWM
Mon11
Tue12
Wed13
Thu14
Fri15
{[9,10,11,12,1,2,3,4].map(h =>
{h}
)}
CS 2409:00 — Uni
Study group1:00 — Personal
Tutorial · Lab 310:30 — Uni
5k run2:30 — Strava
CS 240Uni
Office hours11:30 — Personal
Climbing
Deep work10:00 — Personal
Therapy1:00 — Personal
Dinner — Sam
CS 240Uni
Society exec10:30 — Group
Flight · LHR → BCN
{/* Health column */}
Tonight's bedtime
10:30 PM
Forecast from your 7:15 AM tomorrow
Cognition
Clear
78Today
);
}
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;