import { theme } from "../cms.ts"; export default { type: "object", name: "speakers", fields: [ "title: text", "description: markdown", "id: text", theme, { type: "object-list", name: "speakers", fields: [ "name: text", "id: text", "company: text", "role: text", "bio: markdown", "image: file", { type: "object-list", name: "links", fields: [ { type: "text", name: "icon", description: "Phosphor icon name", }, "url: url", ], }, ], }, ], };