Monthly Letter CTA

The monthly letter

Onequietemail,whenthemonthturns.

A few paragraphs on rest, attention and the slow work, written by the practitioners. No advice in bullet points, nothing to buy, and an unsubscribe link that actually works.

Around 900 words. Read in five minutes, or not at all.

Portrait of a reader
Portrait of a reader
Portrait of a reader
Portrait of a reader

Read by 2,300 people who mostly do not open newsletters.

About this block

Monthly Letter CTAPRO

A newsletter call to action on a light page with a drifting soft light: a serif heading that settles in word by word and an intro on the left, a rounded email field with a full-width sliding-marker pill and a reader avatar line on the right.

Cta98: Monthly Letter CTA

A newsletter sign-up that reads like an invitation rather than a capture: the pitch on one side, and on the other a rounded email field, a full-width pill, a note, and a ruled row of reader avatars with a count.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/cta98?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/cta98?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/cta98.tsx, the shadcn input primitive the capture is built on, and the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

The installed file exports cta98Demo alongside the block: the exact props behind the preview above. Spread it to get a working newsletter section in one line.

tsx
import { Cta98, cta98Demo } from "@/components/beste/block/cta98";

export default function Page() {
  return <Cta98 {...cta98Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Cta98 } from "@/components/beste/block/cta98";

export default function Page() {
  return (
    <Cta98
      eyebrow="The monthly letter"
      heading="One quiet email, when the month turns."
      description="A few paragraphs on rest, attention and the slow work, written by the practitioners."
      form={{
        placeholder: "you@example.com",
        button: "Send me the letter",
        note: "Around 900 words. Read in five minutes, or not at all.",
      }}
      avatars={[{ src: "/readers/one.jpg", alt: "Portrait of a reader" }]}
      proof="Read by 2,300 people who mostly do not open newsletters." 
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringSmall-caps line above the heading
headingstringSection heading, rendered as an h2 through Text1
descriptionstringThe pitch, under the heading
form{ placeholder: string; button: string; note: string }Email capture; the whole form is skipped when unset
avatarsAvatar[][]Overlapping reader portraits
proofstringCount printed beside the avatars
classNamestringExtra classes for the outer <section>
ts
type Avatar = {
  src: string;
  alt: string;
};

Behavior notes

  • The right column is a flex with justify-end, so on a wide screen the field and its proof row sit at the foot of the section and line up with the end of the pitch rather than with its first line.
  • The Input is deliberately transparent with a rounded pill shape, and its focus ring is traded for a solid border, so the field and the button under it read as one object.
  • The button is stacked under the field rather than beside it, which is what lets both stay full width and keeps a long call to action from being truncated in a narrow column.
  • The avatar row carries shrink-0 on the stack, so a long proof sentence wraps instead of squeezing the portraits.
  • Avatars overlap with -space-x-3, each ringed in border-background, so the separation comes from the ring rather than from a gap.
  • The copy waits on 0.3 + heading.split(" ").length * 0.05, matching the word stagger, so the paragraph arrives as the last word of the heading lands.
  • The form only calls preventDefault(); no address is captured or sent until you wire it up.

Wiring the form up

This block ships the form markup only; state, validation, and submit are yours to add. Our guide wires the shadcn Field primitives to React Hook Form, TanStack Form, and Formisch on one field system.

More CTA blocks

View all CTA
PRO

cta104

Photo Button CTA

A call to action with the text above the picture: a centred serif heading that settles in word by word and an intro, then a wide rounded photograph drifting under a light scrim and film grain with a single large sliding-marker pill at its centre.

FREE

cta8

Centered Newsletter CTA

Minimal centered call-to-action with heading, description, and action buttons. Perfect for newsletter signups and conversion sections.

PRO

cta101

Soft Panel CTA

The simplest call to action in the language: one soft muted panel with a centred eyebrow, a serif heading that settles in word by word, an intro and two sliding-marker pills.

PRO

cta9

Split Layout Newsletter CTA

Two-column call-to-action with decorative image on one side and feature list with action buttons on the other. Perfect for visually rich conversion sections.

PRO

cta95

Parallax Panel CTA

A closing call to action on a rounded photographic panel: the photo drifts under the panel as the page scrolls, soft light and film grain sit over it, and a centred serif heading settles in word by word above the intro, a pill button, an email link and a star rating line.

PRO

cta96

Half Photo CTA

A two-panel call to action inside one rounded frame: a soft muted panel with a serif heading that settles in word by word, an intro, a sliding-marker pill and dotted reassurances, beside a photograph that drifts inside its half as the page scrolls.