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

20 lines
339 B
TypeScript
Raw Permalink Normal View History

2024-09-07 01:40:25 +00:00
import { defineField, defineType } from 'sanity'
export default defineType({
name: 'callToAction',
type: 'object',
title: 'Call to Action',
fields: [
defineField({
name: 'linkText',
type: 'string',
title: 'Link Text',
}),
{
name: 'url',
type: 'string',
title: 'URL',
},
],
})