/* global React */ function BeTag({ name, size }) { return ( Be _ {name} ); } function Section({ id, tone = "paper", children, full = false }) { return (
{full ? children :
{children}
}
); } function SectionHead({ num, title, sub, tag, right = null }) { return (
{num}
{tag ?
{tag}
: null}

{sub ?

: null} {right}

); } function Img({ label, ratio = "4/3", style }) { return (
{label}
); } function HumanVerifiedBadge({ id = "HV-2026-0042" }) { return ( Human-Verified · {id} ); } function PoweredByBoldy() { return ( Powered by Boldy ); } window.BeTag = BeTag; window.Section = Section; window.SectionHead = SectionHead; window.Img = Img; window.HumanVerifiedBadge = HumanVerifiedBadge; window.PoweredByBoldy = PoweredByBoldy;