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.
List native navigation items for the Expo landing companion.
Goal
Mirror the main ContractSpec public website navigation in mobile.
Context
Used by the shared mobile landing shell.
IO
•
**Input**: none
•
**Output**: `LandingNavigationOutput`
Source Definition
export const MobileLandingNavigationListQuery = defineQuery({
meta: {
key: 'mobileLanding.navigation.list',
version: '1.0.0',
description: 'List native navigation items for the Expo landing companion.',
goal: 'Mirror the main ContractSpec public website navigation in mobile.',
context: 'Used by the shared mobile landing shell.',
owners: ['@platform.core'],
tags: ['mobile', 'expo', 'landing', 'navigation'],
stability: 'experimental',
},
io: {
input: null,
output: LandingNavigationOutput,
},
policy: {
auth: 'anonymous',
},
});