People we send you to
Practitioners we know well and would sit with ourselves. Each card opens their own page, not a profile we wrote about them.
A ruled list of people to refer on to, every row a whole link: a round portrait, a serif name over a role and a line of what they hold, a place column and an arrow that lifts as the row tints.
A ruled list of people to refer on to, every row a whole link with a round portrait and a place column.
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/social60?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/social60?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/social60.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports social60Demo alongside the block: the exact props behind the preview above. Spread it to get a working linked Referral Rows in one line.
import { Social60, social60Demo } from "@/components/beste/block/social60";
export default function Page() {
return <Social60 {...social60Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Social60 } from "@/components/beste/block/social60";
export default function Page() {
return (
<Social60
eyebrow="People we send you to"
heading="When we are not the right room."
description="Practitioners we know well and would sit with ourselves."
button={ label: "Join the list", href: "/referrals", tone: "outline" }
partners={[
{
name: "Joanna Newsom",
role: "Trauma and the body",
description: "Long work with people who found talking was not enough.",
place: "Lisbon and online",
href: "/referrals/joanna",
portrait: { src: "/people/joanna.jpg", alt: "Portrait" },
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
description | string | – | Intro paragraph under the heading |
button | ActionButton | – | Pill action centred under the list |
partners | Partner[] | [] | Linked rows, in order |
className | string | – | Extra classes for the outer <section> |
type Partner = {
name: string;
role: string;
description: string;
place?: string;
href: string;
portrait: Image;
};
type Image = { src: string; alt: string };
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};Link laid out as a grid, so the portrait, the name, the place and the arrow all lead to the same page.size-16 frame with no parallax: faces are held still while landscape photographs elsewhere in the set drift.place is optional and keeps its track, so names stay aligned whether or not a row carries one.md, where the place sits under the description and the arrow is hidden rather than wrapped.blur(24px) on decode, with a complete check for cached files.social56
A referral section walking through three numbered steps and the full terms as a hairline table, beside a column that sticks and floats a live credit card on an image tile.
social48
A community section listing four linked places to join as full-width hairline rows, each with an icon tile, a description, a light membership figure, and an arrow that shifts on hover.
social50
A social section that gives one post an image tile of its own, floating a live post card with its engagement counts, beside the replies it drew as linked hairline rows.
social49
A social proof grid of six linked post cards, each with an avatar, handle, timestamp, the post itself, and reply, repost, and like counts under a hairline.