mirror of
https://github.com/tjsga/website-sanity.git
synced 2025-04-17 01:20:18 -04:00
23 lines
319 B
JavaScript
23 lines
319 B
JavaScript
export default {
|
|
name: "initiative",
|
|
title: "Initiative",
|
|
type: "document",
|
|
fields: [
|
|
{
|
|
name: "name",
|
|
title: "Name",
|
|
type: "string"
|
|
},
|
|
{
|
|
name: "thumbnail",
|
|
title: "Thumbnail",
|
|
type: "image"
|
|
},
|
|
{
|
|
name: "content",
|
|
title: "Content",
|
|
type: "array",
|
|
of: [{type: "block"}]
|
|
}
|
|
]
|
|
} |