Forion Logo
← Orbit

E-commerce product page

Product pages blend media, variant selectors, inventory hints, and trust signals. Describe image gallery behavior, sale badges, and mobile stacking so the first preview matches how shoppers actually scroll. Orbit outputs components you can connect to Shopify, Stripe, or a custom catalog later.

Be explicit about currency formatting and locale. Internationalization mistakes are expensive to unwind if the first pass hardcodes strings. Stub pricing server calls with clear TODO comments so engineers do not confuse mock data with production totals.

If you also need cart and checkout, generate those as separate milestones to keep diffs reviewable. Link internally between milestones using consistent route names.

Example structure

<div className="grid gap-8 lg:grid-cols-2">
  <ProductGallery images={…} />
  <BuyBox title={…} price={…} />
</div>

FAQ

Can Orbit integrate with Shopify?
Orbit produces UI code; integrations require your API keys and SDKs. Mention Shopify in the prompt for more relevant stubs.
How do I handle SEO for products?
Add metadata routes or head management in your framework; Orbit focuses on interactive UI scaffolding.