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