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.
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.
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/hero169?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label above the headline |
heading | string | – | Hero headline |
quote | Quote | – | Reader quote in a bordered card under the headline |
form | SignupForm | – | Labels for the email row |
note | string | – | Fine print under the row |
confirmation | string | – | Line that replaces the row after submitting |
className | string | – | Extra classes for the outer section |
type Quote = {
text: string;
name: string;
title?: string;
avatar?: Avatar;
};
type SignupForm = {
label: string;
placeholder: string;
submitLabel: string;
};
type Avatar = {
src: string;
alt: string;
};onSubmit at your own list when you wire it up.quote.title is optional and printed after a comma, so a quote can carry a name alone.sm up and stacks below it, with the input and the button both h-14 so the row keeps one height.email and required, which means the browser validates it before the block ever sees the submit.hero126
Centered waitlist hero with eyebrow, big heading, description, an inline email-capture form and an overlapping avatar trust row.
hero69
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.
hero170
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.
hero7
Centered hero with optional badge, heading, description, dual action buttons, and a featured image below. Perfect for product launches and landing pages.