import { defineType } from "sanity"; export default defineType({ name: 'hero', type: 'document', title: 'Hero section', i18n: true, fields: [ { title: "Title", name: 'title', type: 'string', }, { title: "Content", name: "content", type: "array", of: [{ type: "block" }] }, { title: "Image", name: "image", type: "image", fields: [ { title: "Alternative text", name: 'alt', type: 'string', } ] } ] })