import { MintelBlock } from "./types"; import type { Block } from "payload"; export const LeadParagraphBlock: MintelBlock = { slug: "leadParagraph", labels: { singular: "Lead Paragraph", plural: "Lead Paragraphs", }, admin: { group: "MDX Components", }, ai: { name: "LeadParagraph", description: "Larger, emphasized paragraph for the article introduction. Use 1-3 at the start.", usageExample: "'\n Unternehmen investieren oft Unsummen in glänzende Oberflächen, während das technische Fundament bröckelt.\n'", }, fields: [ { name: "text", type: "textarea", required: true, admin: { components: { afterInput: [ "@mintel/payload-ai/components/AiFieldButton#AiFieldButton", ], }, description: "Geben Sie den mehrzeiligen Text für text ein.", }, }, ], };