Responsive grid of social media platform buttons with follower counts and platform icons. Perfect for creators and influencers showcasing their social media presence.
Responsive grid of outlined pill buttons, one per social platform, each showing a platform icon, name, and optional follower count.
Free block
This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.
Radix flavor
npx shadcn add "https://ui.beste.co/r/portfolio62"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/portfolio62"This installs the block to components/beste/block/portfolio62.tsx and the button shadcn/ui primitive it depends on.
The installed file exports portfolio62Demo alongside the block: the exact props behind the preview above. Spread it to get a working social grid in one line.
import { Portfolio62, portfolio62Demo } from "@/components/beste/block/portfolio62";
export default function AboutPage() {
return <Portfolio62 {...portfolio62Demo} />;
}Then replace the demo with your own props. Written out, the same setup looks like this:
import { Portfolio62 } from "@/components/beste/block/portfolio62";
export default function AboutPage() {
return (
<Portfolio62
heading="Find me online"
description="Follow along for behind-the-scenes updates."
links={[
{ platform: "twitter", href: "https://twitter.com/example", followers: "9.4K" },
{ platform: "github", href: "https://github.com/example" },
{ platform: "instagram", href: "https://instagram.com/example", followers: "18K" },
]}
labels={{ followers: "followers" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
heading | string | – | Section heading |
description | string | – | Section intro text |
links | SocialLink[] | [] | Platform buttons rendered in the grid |
labels | { followers?: string } | {} | Suffix shown after a link's follower count |
className | string | – | Extra classes for the outer <section> |
type SocialLink = {
platform: string;
href: string;
followers?: string;
};link.platform is matched case-insensitively against a fixed icon map (github, linkedin, twitter, dribbble, instagram, youtube); any platform string outside that list silently falls back to the GitHub icon rather than a generic placeholder.link.followers and labels.followers are set. Supplying followers without setting labels.followers hides the count entirely, since the label suffix is what gates it.max-w-4xl with up to three columns (sm:grid-cols-2 md:grid-cols-3), so a link count that isn't a clean multiple of the column count leaves a ragged last row rather than centering it.portfolio89
Grid of partner cards featuring circular avatars, names, roles, skill badges, and clickable links. Perfect for showcasing team members, collaborators, or professional network.
portfolio110
One large featured project with image, category, and title, followed by a row of smaller project cards. Monochrome studio styling.
portfolio114
A monochrome three-column grid of uniform project cards, each pairing an image with a title, client / year / service chips, and a link to the case.
portfolio101
Portfolio grid of project cards with hover-zoom imagery, numbered titles, category tags and a seal arrow link.
portfolio70
Grid of book cards displaying cover images, titles, authors, star ratings, and category badges. Perfect for sharing reading lists and book recommendations on personal sites.
portfolio109
Three alternating case-study rows pairing a large rounded image with a title, description, detail line, and an editorial link.