Share This Panel With Copy LinkPRO

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.

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/cta93?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringBadge6 label inside the panel
headingstringPanel heading
descriptionstringSupporting paragraph
shareUrlstringThe address shown in the field and copied
copyLabelstringButton label before copying
copiedLabelstringButton label after copying
destinationsLabelstringWords before the destination chips
destinationsDestination[][]Places to send it, as links
classNamestringExtra classes for the outer section
ts
type Destination = {
  label: string;
  href: string;
};

Behavior notes

More CTA blocks

View all CTA
PRO

cta73

Closing CTA Panel

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.

PRO

cta75

Split CTA With Thread

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.

PRO

cta84

Photo Band Story CTA

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.

PRO

cta87

Resource Rows CTA

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.

PRO

cta91

Handheld Reminder CTA

A closing call to action that leads with a narrow portrait tile floating a live phone frame, then sets centered copy and two actions beneath it over three hairline promises.

PRO

cta81

Launch Countdown CTA

A closing call to action with centered copy above two image tiles, one floating a live countdown and the other an inline email capture, closing on a line of fine print.

Markdown version