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", }, ai: { name: "RevenueLossCalculator", description: "Interactive calculator that estimates financial loss due to slow page load times. Use to build a business case for performance optimization.", usageExample: "", }, 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.", }, }, ], };