Three tinted topic cards, each stamped with how many pieces sit behind it, the topic name, and an image filling the lower half, alongside a link out to the full topic index.
Three tinted topic cards, each stamped with how many pieces sit behind it, the topic name, and an image filling the lower half, alongside a link out to the full topic index.
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/blog66?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/blog66?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/blog66.tsx and the badge6 component it uses for the eyebrow (installed to components/beste/component/badge6.tsx).
The installed file exports blog66Demo alongside the block: the exact props behind the preview above. Spread it to get a working topic row in one line.
import { Blog66, blog66Demo } from "@/components/beste/block/blog66";
export default function TopicsPage() {
return <Blog66 {...blog66Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Blog66 } from "@/components/beste/block/blog66";
export default function TopicsPage() {
return (
<Blog66
eyebrow="Keep reading"
heading="Browse by subject"
countLabel="Pieces"
link={{ label: "See every subject", href: "/subjects" }}
topics={[
{
count: 11,
title: "Client work",
image: { src: "/topics/client-work.jpg", alt: "A team at a table" },
href: "/subjects/client-work",
},
{
count: 7,
title: "Pricing and proposals",
image: { src: "/topics/pricing.jpg", alt: "A printed estimate" },
href: "/subjects/pricing",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label, sharing a row with the link |
heading | string | – | Section heading under the rule |
countLabel | string | – | Noun after each card's count, e.g. "Pieces" |
link | ActionLink | – | Link out to the full index, at the right of the eyebrow row |
topics | Topic[] | [] | Topic cards, three to a row on desktop |
className | string | – | Extra classes for the outer section |
type Topic = {
count: number;
title: string;
image: TopicImage;
href: string;
};
type TopicImage = {
src: string;
alt: string;
};
type ActionLink = {
label: string;
href: string;
};count in front of countLabel, so a card with eleven pieces reads "11 Pieces" and stays correct as the archive grows.countLabel prints the bare number rather than a trailing space.bg-muted/50 that deepens to bg-muted on hover, with the accent kept for the count and the hovered title. There is no per-card colour to configure.blog63
A topic hub card whose left third is a photo panel with the topic title set on a scrim over it, next to a two-column body: a short summary on one side and the posts belonging to the topic listed by title alone on the other.
blog22
Vertically stacked blog cards with 2:1 aspect ratio images. Full article summaries with author avatars and read more buttons. Long-form content showcase.
blog59
Three linked journal cards, each with a four-by-three image, a category, a display title, an excerpt and a ruled byline pinned to the bottom of the card so uneven excerpts still align.
blog5
Vertical stack of horizontal blog cards with left-aligned thumbnails. Features calendar and clock icons for metadata, author titles, and tag badges.