Files
mintel.me/apps/web/src/payload/blocks/LeadParagraphBlock.ts
Marc Mintel b2f6627ec5
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 6s
Build & Deploy / 🧪 QA (push) Failing after 1m24s
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 2s
refactor(payload): extract ai extensions to @mintel/payload-ai package
2026-03-02 23:00:50 +01:00

37 lines
938 B
TypeScript

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:
"'<LeadParagraph>\n Unternehmen investieren oft Unsummen in glänzende Oberflächen, während das technische Fundament bröckelt.\n</LeadParagraph>'",
},
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.",
},
},
],
};