Centered Newsletter Hero With Reader QuotePRO

A centered newsletter hero that puts one reader quote in a bordered card between the headline and the email row, and swaps the row for a confirmation line once it is submitted.

Hero169: Centered Newsletter Hero With Reader Quote

A centered newsletter hero that puts one reader quote in a bordered card between the headline and the email row, and swaps the row for a confirmation line once it is submitted.

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

Base UI flavor

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

This installs the block to components/beste/block/hero169.tsx, the badge6 component used for the eyebrow, and the shadcn/ui input and button primitives behind the signup row.

Quick start

The installed file exports hero169Demo alongside the block: the exact props behind the preview above. Spread it to get a working signup hero in one line.

tsx
import { Hero169, hero169Demo } from "@/components/beste/block/hero169";

export default function NewsletterPage() {
  return <Hero169 {...hero169Demo} />;
}

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

tsx
import { Hero169 } from "@/components/beste/block/hero169";

export default function NewsletterPage() {
  return (
    <Hero169
      eyebrow="The Tuesday memo"
      heading="A short letter about the money side of creative work"
      quote={{
        text: "It is the first thing I open on a Tuesday.",
        name: "Maria Santos",
        title: "Head of Brand at Northwind",
        avatar: { src: "/people/maria.jpg", alt: "Maria Santos" },
      }}
      form={{ label: "Email address", placeholder: "you@studio.com", submitLabel: "Subscribe" }}
      note="Sent Tuesday mornings. The unsubscribe link sits at the top of every issue."
      confirmation="Check your inbox. The most recent memo is on its way now."
    />
  );
}

Props

PropTypeDefaultDescription
eyebrowstringBadge6 label above the headline
headingstringHero headline
quoteQuoteReader quote in a bordered card under the headline
formSignupFormLabels for the email row
notestringFine print under the row
confirmationstringLine that replaces the row after submitting
classNamestringExtra classes for the outer section
ts
type Quote = {
  text: string;
  name: string;
  title?: string;
  avatar?: Avatar;
};

type SignupForm = {
  label: string;
  placeholder: string;
  submitLabel: string;
};

type Avatar = {
  src: string;
  alt: string;
};

Behavior notes

More Hero blocks

View all Hero
PRO

hero126

Waitlist Email Hero

Centered waitlist hero with eyebrow, big heading, description, an inline email-capture form and an overlapping avatar trust row.

FREE

hero69

Email Signup Hero

Minimal centered hero with inline email input field and submit button for newsletter or waitlist signups. Perfect for coming-soon pages and early access campaigns.

PRO

hero170

Subscriber Count Hero With Offer Bubble

A centered newsletter hero led by the subscriber count, with a speech bubble naming what arrives on joining, a row of publication marks under it, and an email row that turns into a confirmation.

FREE

hero7

Centered Hero with Media

Centered hero with optional badge, heading, description, dual action buttons, and a featured image below. Perfect for product launches and landing pages.

FREE

hero68

Centered Hero with Feature Icons

Centered hero with three feature highlights displayed as icon cards with descriptions below the CTA. Perfect for platform and infrastructure products.

PRO

hero122

Typographic Card Hero

Centered typographic hero on a muted card with an oversized heading, inline CTA, and a bottom monospace meta row of three labels.

Markdown version