// wf-landing.jsx — Screen 1: Landing (PUC-1). Two directions. const { Screen: LScreen, Wordmark: LWordmark, TopBar: LTopBar, Footer: LFooter, WF_T: LT, WF_DS: LDS } = window; const { Button: LButton, Soul: LSoul, Eyebrow: LEyebrow } = LDS; function LogInLink({ size = 14 }) { return Log in; } function LandingValue({ device }) { const desktop = device === 'desktop'; return ( <> One storefront, fully yours

Sell online,
honestly.

Claim your storefront on a platform that takes only what it takes to run — no trial countdown, no plan wall, no data you didn't agree to give.

); } // ── Direction A — Quiet centered ─────────────────────────────────────────── function LandingA({ device = 'desktop' }) { const desktop = device === 'desktop'; return ( } right={} />
Create your storefront → Already selling with us? Log in
); } // ── Direction B — Durable frame (split) ──────────────────────────────────── function LandingB({ device = 'desktop' }) { const desktop = device === 'desktop'; if (!desktop) { return (
); } return (
); } function BrandRailLite() { return (
Your storefront is yours.
); } function Doors() { return (
); } function DoorRow({ primary, title, desc, cta }) { return (
{title}
{desc}
{cta}
); } Object.assign(window, { LandingA, LandingB });