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.
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.
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/hero173?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/hero173?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/hero173.tsx, the badge6 component used for the eyebrow and the button1 seal button beside the heading.
The installed file exports hero173Demo alongside the block: the exact props behind the preview above. Spread it to get a working bylined hero in one line.
import { Hero173, hero173Demo } from "@/components/beste/block/hero173";
export default function AboutPage() {
return <Hero173 {...hero173Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Hero173 } from "@/components/beste/block/hero173";
export default function AboutPage() {
return (
<Hero173
eyebrow="Written by two people"
heading="No editorial team, no ghostwriters, no house voice"
description="Everything here is written by whichever of us did the work being described."
button={{ label: "Read what we publish", href: "/writing" }}
image={{ src: "/studio/table.jpg", alt: "The two of us at a shared table" }}
caption="The studio, on the Tuesday morning issue 042 went out."
writers={[
{
name: "Maria Santos",
title: "Partner, brand",
line: "Writes about pricing, proposals and the conversations before a project starts.",
avatar: { src: "/people/maria.jpg", alt: "Maria Santos" },
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label above the heading |
heading | string | – | The position the page is taking |
description | string | – | Paragraph under the heading |
button | ActionButton | – | Seal button held at the right of the heading row |
image | StudioImage | – | Wide photograph under the heading row |
caption | string | – | Caption under the photograph |
writers | Writer[] | [] | One portrait card per writer |
className | string | – | Extra classes for the outer section |
type Writer = {
name: string;
title: string;
line: string;
avatar: WriterAvatar;
};
type WriterAvatar = {
src: string;
alt: string;
};
type StudioImage = {
src: string;
alt: string;
};
type ActionButton = {
label: string;
href: string;
};lg:items-end, so the button sits on the baseline at the bottom of the paragraph rather than floating level with the first line. Below lg it drops under the text.16/9 on small screens and 21/9 from md up, so the band gets wider as the column does instead of growing taller.figure with a figcaption, which keeps the caption attached to the picture for anyone reading the markup rather than the layout.md up. They are plain text, so a name is not a link that goes nowhere.h1, since it is written to open a page rather than to sit inside one.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.
hero162
A hero that sets a light display heading and one action against a column of numbered hairline rows, then closes on a full-bleed image band with a live approval request pinned into its corner.
hero172
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.