The monthly letter
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.
Read by 2,300 people who mostly do not open newsletters.
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.
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.
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
npx shadcn add "https://ui.beste.co/r/cta98?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
description | string | – | The pitch, under the heading |
form | { placeholder: string; button: string; note: string } | – | Email capture; the whole form is skipped when unset |
avatars | Avatar[] | [] | Overlapping reader portraits |
proof | string | – | Count printed beside the avatars |
className | string | – | Extra classes for the outer <section> |
type Avatar = {
src: string;
alt: string;
};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.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.shrink-0 on the stack, so a long proof sentence wraps instead of squeezing the portraits.-space-x-3, each ringed in border-background, so the separation comes from the ring rather than from a gap.0.3 + heading.split(" ").length * 0.05, matching the word stagger, so the paragraph arrives as the last word of the heading lands.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.
cta104
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.
cta8
Minimal centered call-to-action with heading, description, and action buttons. Perfect for newsletter signups and conversion sections.
cta101
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.
cta9
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.