File size: 551 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import { Block } from "payload/types";
import { backgroundColor } from "../../fields/backgroundColor";
import linkGroup from "../../fields/linkGroup";
import richText from "../../fields/richText";
export const CallToAction: Block = {
slug: "cta",
labels: {
singular: "Call to Action",
plural: "Calls to Action",
},
fields: [
backgroundColor({ overrides: { name: "ctaBackgroundColor" } }),
richText(),
linkGroup({
appearances: ["primary", "secondary"],
overrides: {
maxRows: 2,
},
}),
],
};
|