import { baseLanguage } from "./_locales"; export default { name: 'contact', type: 'document', title: 'Contact section', preview: { select: { title: `title.${baseLanguage.id}` } }, fields: [ { title: "Address lines", name: 'addressLines', type: 'array', of: [{ type: 'localizedString' }] }, { title: "Email", name: "email", type: "string", }, { title: "Phone", name: "phone", type: "string" }, { title: "Phone hours", name: "phoneHours", type: "localizedString" } ] }