import { MintelBlock } from "./types"; import type { Block } from "payload"; export const RevenueLossCalculatorBlock: MintelBlock = { slug: "revenueLossCalculator", labels: { singular: "Revenue Loss Calculator", plural: "Revenue Loss Calculators", }, admin: { group: "MDX Components", }, fields: [ { name: "title", type: "text", defaultValue: "Performance Revenue Simulator", admin: { components: { afterInput: [ "@mintel/payload-ai/components/AiFieldButton#AiFieldButton", ], }, description: "Geben Sie den Text für title ein.", }, }, ], };