import type { MintelBlock } from "./types"; export const H3Block: MintelBlock = { slug: "mintelH3", labels: { singular: "Heading 3", plural: "Headings 3", }, fields: [ { name: "text", type: "text", required: true, admin: { description: "Geben Sie den Text für die H3-Überschrift ein.", components: { afterInput: [ "@mintel/payload-ai/components/FieldGenerators/AiFieldButton#AiFieldButton", ], }, }, }, ], };