Three case studies, each card a whole link: a photograph drifting inside its frame, a serif figure with the span it covers, the story in two sentences and an attribution facing an arrow that lifts on hover.
Three case studies, each card a whole link opening with a photograph and a serif figure.
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/usecase61?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/usecase61?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/usecase61.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports usecase61Demo alongside the block: the exact props behind the preview above. Spread it to get a working linked Story Cards in one line.
import { Usecase61, usecase61Demo } from "@/components/beste/block/usecase61";
export default function Page() {
return <Usecase61 {...usecase61Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Usecase61 } from "@/components/beste/block/usecase61";
export default function Page() {
return (
<Usecase61
eyebrow="What changed"
heading="Three years, told by the people who lived them."
button={ label: "Read every story", href: "/stories", tone: "outline" }
stories={[
{
figure: "18",
figureLabel: "months of weekly hours",
title: "The year the noise stopped",
description: "Started after a bereavement nobody at work knew about.",
attribution: "Beth Orton, individual therapy",
href: "/stories/noise",
image: { src: "/stories/noise.jpg", alt: "A window with the blind half drawn" },
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
button | ActionButton | – | Pill action beside the heading |
stories | Story[] | [] | Linked story cards, three across from md |
className | string | – | Extra classes for the outer <section> |
type Story = {
figure: string;
figureLabel: string;
title: string;
description: string;
attribution?: string;
href: string;
image: Image;
};
type Image = { src: string; alt: string };
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};Link and carries no border, so the photograph is the edge of the object.attribution sits on the closing row opposite the arrow, which keeps the name away from the story it belongs to only loosely.mt-auto, so three cards with different excerpt lengths line their attributions up.-8% to 8% against a 1.18 scale.blur(24px) on decode, with a complete check for cached files.usecase59
Five situations as ruled rows, each one a whole link: a square photograph pinned left, a serif sentence over its paragraph, and an arrow link at the right end that lifts as the row tints on hover.
usecase57
Four hairline cards, each a whole link opening with a round portrait, then a quiet label, a serif title, a line of who it is for and an arrow that lifts on hover.
usecase58
Six photographic tiles in a three-column grid, every one a whole link: the photograph drifts behind a gradient carrying a meta line, a serif title, a sentence of context and an arrow that lifts on hover.
usecase53
One client story told in three photographed steps, opening with the client name on a ruled block beside the heading and closing with three oversized outcome figures.