// today/TodayHome.jsx — Home tab root. The "one page" that opens every // morning. Composition: greeting hero → Arc → Todos (3 buckets) → Projects // (h-scroll) → Goals → Objectives. Pinned tab bar (Today active). function TodayHome({ dark = false }) { return ( Sunday · Mar 16 } trailing={<> } /> {/* Greeting hero */}
Good morning, Lukas
14° · clear
Three things matter today.
Algorithms lecture · Maya at 1 · finish thesis section 4.2.
{[ { l: 'Next up', v: '7:15 AM', s: 'Morning shift' }, { l: 'Sleep', v: '6.2h', s: '−1.8h vs avg' }, { l: 'Bedtime', v: '10:30 PM', s: 'Backed from 7:15' }, ].map(s => (
{s.l}
{s.v}
{s.s}
))}
{/* Today's Arc */}
{/* TO-DO — 3 buckets stacked, drag-between */}
{/* PROJECTS */}
{/* GOALS */}
{/* OBJECTIVES */}
); } window.TodayHome = TodayHome;