import { MintelBlock } from "./types"; import type { Block } from "payload"; export const PerformanceROICalculatorBlock: MintelBlock = { slug: "performanceROICalculator", labels: { singular: "Performance R O I Calculator", plural: "Performance R O I Calculators", }, admin: { group: "MDX Components", }, fields: [ { name: "baseConversionRate", type: "number", defaultValue: 2.5, admin: { description: "Tragen Sie einen numerischen Wert für baseConversionRate ein.", }, }, { name: "monthlyVisitors", type: "number", defaultValue: 50000, admin: { description: "Tragen Sie einen numerischen Wert für monthlyVisitors ein.", }, }, ], };