A follow section held in one dark panel, listing each account as a linked hairline row with what gets posted there and a light follower figure.
A follow section held in one dark panel, listing each account as a linked hairline row with what gets posted there and a light follower 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/social54?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/social54?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/social54.tsx plus the badge23 and button21 components it uses for the eyebrow and the action.
The installed file exports social54Demo alongside the block: the exact props behind the preview above. Spread it to get a working panel in one line.
import { Social54, social54Demo } from "@/components/beste/block/social54";
export default function FollowPage() {
return <Social54 {...social54Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Social54 } from "@/components/beste/block/social54";
export default function FollowPage() {
return (
<Social54
badge={{ label: "Follow along" }}
heading="Everywhere we post, and what we post there"
description="Four accounts, four different jobs."
accounts={[
{
network: "LinkedIn",
handle: "sirius-care",
posts: "Hiring, funding, and the occasional long write-up",
followers: "8,410",
href: "https://example.com/linkedin",
},
{
network: "RSS",
handle: "example.com/feed.xml",
posts: "Every changelog entry and blog post, with no algorithm in between",
followers: "3,120",
href: "/feed.xml",
},
]}
note="We do not cross-post the same thing to all four."
button={{ label: "Read the changelog instead", href: "/changelog" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string } | – | Eyebrow at the top of the panel, retoned for the dark surface |
heading | string | – | Section heading on the panel |
description | string | – | Supporting paragraph, right-aligned from md up |
accounts | Account[] | [] | Linked accounts as hairline rows |
note | string | – | Closing note beside the action |
button | { label: string; href: string } | – | Outline action, retoned for the dark surface |
className | string | – | Extra classes for the outer section |
type ActionLink = {
label: string;
href: string;
};
type Account = {
network: string;
handle: string;
posts: string;
followers: string;
href: string;
};posts is required on every account and is the reason the block exists: a follow section that lists networks without saying what appears on each is asking people to guess.bg-foreground, so every text token inside is a fixed background value and hairlines use border-background/20 rather than border-border.hover:bg-background/5 rather than hover:bg-muted, since a muted fill is invisible on an inverted surface.border-background/30 text-background hover:bg-background/10 override on top of tone="outline", for the same reason.Link elements in a four-track grid from md: network and handle, what gets posted, the follower count, then the arrow. Below md the arrow is hidden entirely.group/social54, and its shift is wrapped in motion-safe:.tabular-nums, so they can carry separators or abbreviations and still align.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.
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.
social9
User suggestions list with avatars, bios, mutual connections, interest tags, and follow/dismiss actions. Perfect for people-you-may-know sections and onboarding flows.