// Landing (SD-0001 §5.1) — a Visitor learns what ecomm is and picks a door. Honest voice, // no trial/pricing/fee (corpus 14.01.0011). Both doors open the same sign-in flow (§5.2); // they differ only in framing. Visuals per the ui/designs export (hf-landing, Direction A). import { Eyebrow, Footer, PrimaryButton, Screen, TopBar, Wordmark } from "../ui/kit"; interface Props { onGetStarted: () => void; onLogIn: () => void; } const PROMISES: Array<[string, string]> = [ ["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."], ]; export default function Landing({ onGetStarted, onLogIn }: Props) { 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 →
{PROMISES.map(([title, copy]) => (
{title}

{copy}

))}