Two ways to look
By who you are
Two ruled directories side by side under their own small-caps headings, every row a link carrying a serif label, a line of context and an arrow that lifts as the row tints on hover.
Two ruled directories side by side under their own small-caps headings, every row a link.
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/usecase60?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/usecase60?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/usecase60.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports usecase60Demo alongside the block: the exact props behind the preview above. Spread it to get a working two Linked Directories in one line.
import { Usecase60, usecase60Demo } from "@/components/beste/block/usecase60";
export default function Page() {
return <Usecase60 {...usecase60Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Usecase60 } from "@/components/beste/block/usecase60";
export default function Page() {
return (
<Usecase60
eyebrow="Two ways to look"
heading="By who you are, or by what you do."
button={ label: "Talk it through instead", href: "/contact", tone: "outline" }
columns={[
{
title: "By who you are",
links: [{ label: "Couples", description: "Fortnightly, in the room", href: "/couples" }],
},
]}
/>
);
}| 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 centred under the columns |
columns | Column[] | [] | Two directories, side by side from md |
className | string | – | Extra classes for the outer <section> |
type ColumnLink = {
label: string;
description?: string;
href: string;
};
type Column = {
title: string;
links: ColumnLink[];
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};Link with its own arrow, so the two directories behave the same way whichever side a reader starts on.description is optional per row, so a directory can mix bare labels with explained ones.md with their headings intact, so the two axes remain distinguishable on a phone.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.
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.
usecase62
Three route cards ordered from slowest to quickest, each one a whole link with a pace label, a serif title, a paragraph and a dotted pair of details; the middle route inverts to ink to mark the usual choice.
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.