import { marketNotes, marketStats, routeWith, routeWithout } from '../data/content' import { useReveal } from '../hooks/useReveal' import { cx } from '../lib/cx' import { Container, Eyebrow, Section, SectionHead, SmallNote } from './Layout' import { Rail } from './Rail' export function MarketSection() { const stats = useReveal() const gap = useReveal() return (
{marketStats.map((stat) => ( /* The source line used to be absolutely positioned against the card's min-height, so the longest label ran underneath it. It is in the flow now, pinned to the bottom by `mt-auto`. */
))}
{marketNotes[0]} {marketNotes[1]}
) } function RouteColumn({ sign, title, items, accent = false, }: { sign: string title: string items: string[] accent?: boolean }) { return (
{title}
    {items.map((item) => (
  • {item}
  • ))}
) }