// hf-landing.jsx — Landing (PUC-1), Direction A hi-fi. Desktop + mobile. const { HFScreen: LScreen, HFWordmark: LWordmark, HFTopBar: LTopBar, HFFooter: LFooter, HFPrimary: LPrimary, HF_H: L, HF_DSC: LDS } = window; const { Soul: LSoul, Eyebrow: LEyebrow } = LDS; function NavLinks({ mobile = false }) { if (mobile) return Log in; return ( ); } // trust row — three honest promises, hairline-separated (no icons-as-slop) function Promises({ device }) { const items = [ ['No trial clock', 'Your storefront never expires or locks.'], ['No plan wall', 'We take only what it takes to run.'], ['Your data, yours', "Nothing collected you didn't agree to give."], ]; return (
{items.map(([t, d], i) => (
0 ? `1px solid ${L.hair}` : 'none', }}>
{t}

{d}

))}
); } function HFLanding({ device = 'desktop' }) { const desktop = device === 'desktop'; return ( } right={} />
One storefront, fully yours

Sell online,
honestly.

Claim the one storefront that's yours 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.

Create your storefront →
Already selling with us? Log in
); } Object.assign(window, { HFLanding });