A tall photographic band with the newest piece set over a rising gradient, its dateline, display title, summary and seal button anchored to the bottom, above a hairline row of the issues before it.
A tall photographic band with the newest piece set over a rising gradient, its dateline, display title, summary and seal button anchored to the bottom, above a hairline row of the issues before it.
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/hero172?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero172?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero172.tsx, the badge6 component used for the eyebrow and the button1 seal button that opens the issue.
The installed file exports hero172Demo alongside the block: the exact props behind the preview above. Spread it to get a working cover hero in one line.
import { Hero172, hero172Demo } from "@/components/beste/block/hero172";
export default function HomePage() {
return <Hero172 {...hero172Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Hero172 } from "@/components/beste/block/hero172";
export default function HomePage() {
return (
<Hero172
eyebrow="Out this morning"
issueMeta="Issue 042 · 18 March 2026 · 9 minutes"
title="The quote we lost on purpose"
summary="A project we wanted, priced honestly, and watched go somewhere cheaper."
image={{ src: "/covers/042.jpg", alt: "A printed estimate on a desk" }}
button={{ label: "Read issue 042", href: "/letters/042" }}
link={{ label: "Get it by email instead", href: "/subscribe" }}
previousLabel="Before this"
previous={[
{ title: "Two weeks of overlap", date: "11 March", href: "/letters/041" },
{ title: "The document nobody reads", date: "4 March", href: "/letters/040" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label on the band, tuned for a dark surface |
issueMeta | string | – | Dateline above the title |
title | string | – | The piece's own title, set at display size |
summary | string | – | One or two sentences under the title |
image | CoverImage | – | Photograph filling the band |
button | ActionButton | – | Seal button into the issue |
link | ArchiveLink | – | Plain link beside the button |
previousLabel | string | – | Label above the earlier issues |
previous | PreviousIssue[] | [] | Earlier issues, three across on desktop |
className | string | – | Extra classes for the outer section |
type CoverImage = {
src: string;
alt: string;
};
type PreviousIssue = {
title: string;
date: string;
href: string;
};
type ActionButton = {
label: string;
href: string;
};
type ArchiveLink = {
label: string;
href: string;
};from-foreground via-foreground/70 to-foreground/20, so the top of the photograph stays visible while the text at the bottom keeps its contrast.relative, which puts it above the absolutely positioned image and the gradient without needing a z-index.Badge6 takes labelClassName="text-background/70" here, which is the documented way to move it onto a dark surface.min-h-[34rem] and md:min-h-[40rem] rather than an aspect ratio, so a long title lengthens the band instead of cropping the picture.Button1 in its primary tone, which is the variant meant for dark surfaces.hero173
A hero that sets its position and paragraph against a seal button held at the right edge of the same row, then runs a captioned wide photograph beneath it and closes on one portrait card per writer.
hero166
An editorial hero that breaks its display heading across two lines and slots a square image tile floating a live payment card into the gap, with the paragraph and action landing under a hairline.
hero159
A centered hero with an eyebrow, light display heading, and two actions above a staggered three-photo collage whose raised middle tile floats a live booking confirmation.
hero145
An editorial hero with an eyebrow and an oversized full-width light heading, then a lower row pairing a paragraph and two accent buttons with an image tile that floats a live app window frame.