/* Loops — Homepage v2 pricing */ const PricingSectionV2 = () => { const [annual, setAnnual] = React.useState(false); const plans = [ { name: "Solo", price: "\u00A36.99", per: "/mo", note: null, blurb: "Everything. Your goal, your Loops, your rewards and Dora. Just you, one day at a time.", featured: false, toggles: false }, { name: "Duo", price: annual ? "\u00A349" : "\u00A37.99", per: annual ? "/yr" : "/mo", note: null, blurb: "Everything, for two. You and your Buddy, both with the full app, on one bill.", featured: true, toggles: true }, ]; return (
{plans.map((p) => (
{p.featured ? The one we'd pick : null}

{p.name}

{p.price} {p.per}
{p.toggles && !p.note ? (annual ? "Billed yearly." : "Billed monthly.") : p.note || ""}

{p.blurb}

))}
); }; Object.assign(window, { PricingSectionV2 });