Gwk-Cultural-Park/schemas/pagebuilder/youtube.ts

20 lines
341 B
TypeScript
Raw Permalink Normal View History

2024-09-07 01:40:25 +00:00
import { defineField, defineType } from 'sanity'
export default defineType({
name: 'youtube',
type: 'object',
title: 'YouTube Video',
fields: [
defineField({
name: 'youtubelabel',
type: 'string',
title: 'Label',
}),
{
name: 'url',
type: 'string',
title: 'YouTube URL',
},
],
})