Initial commit
This commit is contained in:
commit
5a3bf52ebb
86 changed files with 2639 additions and 0 deletions
35
studio/schemas/documents/siteSettings.js
Normal file
35
studio/schemas/documents/siteSettings.js
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
export default {
|
||||
name: 'siteSettings',
|
||||
type: 'document',
|
||||
title: 'Site Settings',
|
||||
fields: [
|
||||
{
|
||||
name: 'title',
|
||||
type: 'string',
|
||||
title: 'Title'
|
||||
},
|
||||
{
|
||||
name: 'description',
|
||||
type: 'text',
|
||||
title: 'Description',
|
||||
description: 'Describe your portfolio for search engines and social media.'
|
||||
},
|
||||
{
|
||||
name: 'keywords',
|
||||
type: 'array',
|
||||
title: 'Keywords',
|
||||
description: 'Add keywords that describes your portfolio.',
|
||||
of: [{type: 'string'}],
|
||||
options: {
|
||||
layout: 'tags'
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'author',
|
||||
type: 'reference',
|
||||
description: 'Publish an author and set a reference to them here.',
|
||||
title: 'Author',
|
||||
to: [{type: 'person'}]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue