Initial commit: OOODMDK website with updated cities page design

This commit is contained in:
albivkt
2025-06-29 03:18:28 +03:00
commit 5a37ded261
70 changed files with 41347 additions and 0 deletions

View File

@ -0,0 +1,33 @@
export default {
name: 'documents',
title: 'Документ',
type: 'document',
fields: [
{
name: 'title',
title: 'Название документа',
type: 'string',
},
{
name: 'description',
title: 'Описание',
type: 'text',
},
{
name: 'file',
title: 'Файл',
type: 'file',
options: {
accept: '.pdf,.doc,.docx,.xlsx,.ppt,.pptx',
},
},
{
name: 'icon',
title: 'Иконка',
type: 'image',
options: {
hotspot: true,
},
},
],
}