author.ts (395B)
1 import type { Collection } from "tinacms"; 2 3 const Author: Collection = { 4 label: "Authors", 5 name: "author", 6 path: "content/authors", 7 format: "md", 8 fields: [ 9 { 10 type: "string", 11 label: "Name", 12 name: "name", 13 isTitle: true, 14 required: true, 15 }, 16 { 17 type: "image", 18 label: "Avatar", 19 name: "avatar", 20 }, 21 ], 22 }; 23 export default Author;