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.
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.
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/hero170?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero170?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero170.tsx, the badge6 component used for the eyebrow, and the shadcn/ui input and button primitives behind the signup row.
The installed file exports hero170Demo alongside the block: the exact props behind the preview above. Spread it to get a working signup hero in one line.
import { Hero170, hero170Demo } from "@/components/beste/block/hero170";
export default function NewsletterPage() {
return <Hero170 {...hero170Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Hero170 } from "@/components/beste/block/hero170";
export default function NewsletterPage() {
return (
<Hero170
eyebrow="Reader list"
heading="31,904 people read this before their first meeting of the week"
bubble={{ text: "Free on signup: the pricing sheet we quote every project from" }}
logosLabel="Read at"
logos={[
{ src: "/logos/one.png", alt: "Logoipsum" },
{ src: "/logos/two.png", alt: "Logoipsum" },
]}
form={{ label: "Email address", placeholder: "you@studio.com", submitLabel: "Join the list" }}
note="The last three issues arrive straight away."
confirmation="You are in. The back issues are on their way."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label above the headline |
heading | string | – | Hero headline, usually carrying the count |
bubble | Bubble | – | Speech bubble naming what arrives on joining |
logosLabel | string | – | Small label above the logo row |
logos | LogoItem[] | [] | Publication marks, wrapped and centered |
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 Bubble = {
text: string;
};
type LogoItem = {
src: string;
alt: string;
};
type SignupForm = {
label: string;
placeholder: string;
submitLabel: string;
};heading string. Nothing is computed here, which keeps the number under your control and out of a client render.hero169
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.
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.
hero126
Centered waitlist hero with eyebrow, big heading, description, an inline email-capture form and an overlapping avatar trust row.
hero50
Clean centered hero with clickable announcement banner pill above the heading with sparkle icon. Perfect for product launches and feature announcements.