OSS-first docs
These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.
Public store profile page
Goal
Showcase a seller store with its products and reputation.
Context
The public landing page for a marketplace seller.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { StoreModel } from './store.schema';
export const StoreProfilePresentation = definePresentation({
meta: {
key: 'marketplace.store.profile',
version: '1.0.0',
title: 'Store Profile',
description: 'Public store profile page',
domain: 'marketplace',
owners: ['@marketplace-team'],
tags: ['marketplace', 'store', 'profile'],
stability: StabilityEnum.Experimental,
goal: 'Showcase a seller store with its products and reputation.',
context: 'The public landing page for a marketplace seller.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'StoreProfile',
props: StoreModel,
},
targets: ['react', 'markdown'],
policy: {
flags: ['marketplace.stores.enabled'],
},
});