Call To Action Centered
A centered call-to-action block — heading, supporting copy, and one or two CTA links.
import type { Block } from 'payload'import { callToActionFields } from '@/blocks/shared/callToActionFields'import { linkGroup } from '@/fields/linkGroup'export const CallToActionCentered: Block = { slug: 'callToActionCentered', interfaceName: 'CallToActionCenteredBlock', fields: [ // Shared call-to-action core (title, description). Variant-specific fields // follow; edit the shared shape in @/blocks/shared/callToActionFields. ...callToActionFields, linkGroup({ overrides: { admin: { initCollapsed: true, }, maxRows: 2, minRows: 1, }, }), ], labels: { plural: 'Call To Action Centered Blocks', singular: 'Call To Action Centered', },}import React from 'react'import type { CallToActionCenteredBlock as CallToActionCenteredBlockData } from '@/payload-types'import { CMSLink } from '@/components/Link'import { cn } from '@/utilities/ui'type Props = CallToActionCenteredBlockData & { id?: string className?: string disableInnerContainer?: boolean}export const CallToActionCenteredBlock: React.FC<Props> = ({ className, description, disableInnerContainer, id, links, title,}) => { return ( <section className={cn('container', className)} id={id ? `block-${id}` : undefined}> <div className="overflow-hidden rounded-frame border border-border/70 bg-card/35 px-6 py-10 sm:px-8 lg:px-12 lg:py-14"> <div className={cn('flex flex-col items-center gap-4 text-center', { 'mx-auto max-w-2xl': !disableInnerContainer, })} > <h2 className="text-4xl font-medium tracking-display text-balance sm:text-5xl">{title}</h2> {description ? ( <p className="text-base leading-7 text-muted-foreground sm:text-lg">{description}</p> ) : null} {links && links.length > 0 ? ( <div className="flex flex-col justify-center gap-3 pt-2 sm:flex-row"> {links.map(({ link }, index) => ( <CMSLink key={index} appearance={link.appearance === 'outline' ? 'outline' : 'default'} {...link} /> ))} </div> ) : null} </div> </div> </section> )}import type { Field } from 'payload'/** * Shared field core for the Call To Action component family. * * Every call-to-action variant (call-to-action-centered, call-to-action-boxed, * call-to-action-signup, …) spreads these heading fields first and then appends * its own variant-specific shape — the CTA link group for the centered and boxed * layouts, or the email-capture fields for the signup layout. Editing the shared * title/description here updates every installed call-to-action block at once, so * the family never drifts field-by-field across a repo. * * Installed once per repo at `src/blocks/shared/callToActionFields.ts`; re-running * `payload-components add call-to-action-*` never overwrites a copy you have already edited. */export const callToActionFields: Field[] = [ { name: 'title', type: 'text', required: true, }, { name: 'description', type: 'textarea', },]Installation
npx payload-components add call-to-action-centeredCopy the files straight from the registry, then wire the Payload fragments by hand:
pnpm dlx shadcn@latest add https://www.payload-components.xyz/r/call-to-action-centered.jsonWhat it installs
Copies 3 source files into your project:
src/blocks/shared/callToActionFields.tssharedsrc/blocks/CallToActionCentered/config.tssrc/blocks/CallToActionCentered/Component.tsx
…and makes 4 edits to wire the block into your project:
| Registers the block | src/collections/Pages/index.ts |
| Maps the renderer | src/blocks/RenderBlocks.tsx |
| Regenerates types | src/payload-types.ts |
| Regenerates the admin import map | src/app/(payload)/admin/importMap.js |
callToActionFields.ts is the shared field core for this family — every variant composes it. Editing it updates each installed block at once, and re-running an install never overwrites a copy you have changed.Re-running the install converges: it detects existing wiring, skips it, and records install state in .payload-components/state.json.
Content model
title and description come from the shared callToActionFields base; links is specific to this
variant.
Prop
Type
Usage
CallToActionCentered block to its layout.RenderBlocks on the frontend, fully typed — no extra wiring.Requirements
- Target
- payload-website-starter
- Payload
- v3
- Next.js
- 15 / 16
- shadcn UI
- none
Your project must already expose components.json, src/payload.config.ts, src/blocks/RenderBlocks.tsx, src/collections/Pages/index.ts — the surfaces payload-components add patches. The CLI verifies this against the support matrix before touching anything.
In this family
call-to-action-centeredcurrentcall-to-action-boxedcall-to-action-signup