sanity-plugin-podcast
Version:
Podcast plugin for Sanity
32 lines (31 loc) • 534 B
JavaScript
export default {
name: 'social',
title: 'Social network presence',
type: 'object',
fields: [
{
name: 'twitter',
type: 'string',
},
{
name: 'facebook',
type: 'string',
},
{
name: 'googleplus',
type: 'string',
},
{
name: 'instagram',
type: 'string',
},
{
name: 'linkedin',
type: 'string',
},
{
name: 'youtube',
type: 'string',
},
]
}