A closing panel that asks the reader to forward the piece rather than subscribe, pairing a read-only link field and a copy button that confirms in place with a row of send destinations.
A closing panel that asks the reader to forward the piece rather than subscribe, pairing a read-only link field and a copy button that confirms in place with a row of send destinations.
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/cta93?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/cta93?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/cta93.tsx, the badge6 component used for the eyebrow, and the shadcn/ui input and button primitives behind the copy row.
The installed file exports cta93Demo alongside the block: the exact props behind the preview above. Spread it to get a working share panel in one line.
import { Cta93, cta93Demo } from "@/components/beste/block/cta93";
export default function ArticlePage() {
return <Cta93 {...cta93Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Cta93 } from "@/components/beste/block/cta93";
export default function ArticleFooter() {
return (
<Cta93
eyebrow="Pass it on"
heading="Know someone who should read this?"
description="Nothing here is promoted anywhere."
shareUrl="https://beste.co/letters/042"
copyLabel="Copy link"
copiedLabel="Copied"
destinationsLabel="Or send it straight to"
destinations={[
{ label: "Email", href: "mailto:?body=https://beste.co/letters/042" },
{ label: "Slack", href: "https://slack.com" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label inside the panel |
heading | string | – | Panel heading |
description | string | – | Supporting paragraph |
shareUrl | string | – | The address shown in the field and copied |
copyLabel | string | – | Button label before copying |
copiedLabel | string | – | Button label after copying |
destinationsLabel | string | – | Words before the destination chips |
destinations | Destination[] | [] | Places to send it, as links |
className | string | – | Extra classes for the outer section |
type Destination = {
label: string;
href: string;
};navigator.clipboard?.writeText, guarded with optional chaining so an insecure context or an old browser does not throw. The field stays selectable either way, which is the fallback.copiedLabel and the icon to a check, so nothing moves on the page.readOnly rather than disabled, so it can still be focused, selected and read by assistive technology.mailto:, an app URL or your own share route.cta73
A closing call to action on a soft panel, pairing an eyebrow, light heading, paragraph, and two accent buttons with an image tile that floats a live agenda micro-asset.
cta75
A split call to action pairing an eyebrow, light heading, paragraph, and two accent buttons with an image tile that floats a live team message thread.
cta84
A closing call to action set on a photographic panel with a directional gradient, pairing an eyebrow badge, light heading, and two actions with a live customer quote card.
cta87
A closing call to action that offers three downloadable resources as full-width hairline rows, each a link with a short kicker, a format note, and an arrow that shifts on hover.