ContractSpec docs
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.
Get content for a native landing companion route.
Goal
Render web-landing public navigation pages inside Expo.
Context
Used by Expo Router route screens.
IO
•
**Input**: `LandingPageGetInput`
•
**Output**: `LandingPageOutput`
Source Definition
export const MobileLandingPageGetQuery = defineQuery({
meta: {
key: 'mobileLanding.page.get',
version: '1.0.0',
description: 'Get content for a native landing companion route.',
goal: 'Render web-landing public navigation pages inside Expo.',
context: 'Used by Expo Router route screens.',
owners: ['@platform.core'],
tags: ['mobile', 'expo', 'landing', 'page'],
stability: 'experimental',
},
io: {
input: LandingPageGetInput,
output: LandingPageOutput,
},
policy: {
auth: 'anonymous',
},
});