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.
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.
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/blog63?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/blog63?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/blog63.tsx and the badge6 component it uses for both eyebrows (installed to components/beste/component/badge6.tsx).
The installed file exports blog63Demo alongside the block: the exact props behind the preview above. Spread it to get a working card in one line.
import { Blog63, blog63Demo } from "@/components/beste/block/blog63";
export default function TopicPage() {
return <Blog63 {...blog63Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Blog63 } from "@/components/beste/block/blog63";
export default function TopicPage() {
return (
<Blog63
heading="How we price the work"
image={{ src: "/topics/pricing.jpg", alt: "Studio desk with a printed estimate" }}
summaryLabel="Inside the series"
description="Six pieces on quoting, scoping and saying no, and the numbers we put in front of a client before anyone signs."
postsLabel="Chapters"
posts={[
{ title: "The day we stopped billing hours", href: "/blog/no-more-hours" },
{ title: "What a flat price actually has to cover", href: "/blog/flat-price" },
{ title: "Reading a year of quotes back", href: "/blog/a-year-of-quotes" },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
heading | string | – | Topic title inside the image panel |
image | PanelImage | – | Photo filling the panel, behind the scrim the title sits on |
summaryLabel | string | – | Badge6 eyebrow above the summary column |
description | string | – | Summary paragraph for the topic |
postsLabel | string | – | Noun after the post count in the second Badge6 eyebrow |
posts | PostLink[] | [] | Posts in the topic, rendered as title-only links |
className | string | – | Extra classes for the outer section |
type PanelImage = {
src: string;
alt: string;
};
type PostLink = {
title: string;
href: string;
};Badge6, which renders its label uppercase on its own, so pass summaryLabel and postsLabel in sentence case and let the component do the casing.posts.length in front of postsLabel, so passing postsLabel="Chapters" with six posts renders "6 Chapters" and the count stays correct as the list changes.href only. There is no date, excerpt, category, or thumbnail in the list, which is what keeps a six-item topic readable in a single column.absolute inset-0 plus object-cover) and a flat bg-foreground/60 scrim sits between it and the title, so the heading stays legible on any photo. The scrim is a semantic token, which means it inverts with the theme and keeps its contrast against text-background in both.overflow-hidden clips it to the card's corners, so it reads as one third of a single box rather than a picture placed inside it.min-h-72 below md to give it a band height of its own. From md up it takes its height from the body column next to it.lg, where the panel stacks above the body and the body's own two columns split at md. Between md and lg the summary and the post list sit side by side under a full-width panel.Link. The triangle marker is fixed at the top of the row (items-start plus a top margin), so titles that wrap to a second line keep their marker aligned with the first line instead of centering against the block of text.group/blog63, so the marker keeps its own color.blog66
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.
blog5
Vertical stack of horizontal blog cards with left-aligned thumbnails. Features calendar and clock icons for metadata, author titles, and tag badges.
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.
blog10
Large alternating left-right blog cards with full article summaries. Image and content switch sides for visual variety. Read more buttons included.