Files
brian-nelson-sveltekit/schemas/documents/navigation.ts
2025-09-30 19:40:25 -04:00

21 lines
467 B
TypeScript

export default {
name: 'navigation',
title: 'Navigation',
type: 'document',
fields: [
{
name: 'navigation',
title: 'Navigation Menu',
type: 'array',
of: [
{
type: 'reference',
to: [
{type: 'pages'},
{type: 'homepage'}
]
}
]
},
],
}