# Beste UI

> Beautiful, accessible blocks, pieces and components for shadcn/ui and Tailwind CSS, built for React and Next.js. Install one with the shadcn CLI and the code is yours to edit: no runtime dependency, nothing to upgrade.

Markdown rendition of https://ui.beste.co/block/blog66. Every page on the site has one: add `.md` to any address, or send `Accept: text/markdown`.

Last updated: 2026-08-12

Whole catalog for LLMs: https://ui.beste.co/llms.txt. Registry index: https://ui.beste.co/r/registry.json

---
1. /
2. [Blocks](/blocks)
3. /
4. [Blog](/blocks/blog)
5. /
6. Topic Cards With Resource Counts

# Topic Cards With Resource Counts[PRO](/pricing)

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.

ViewCodeDocs

Base UI

![](https://oud.pics/sm/l/npm.svg)`npx shadcn add https://ui.beste.co/r-base/blog66`

## Blog66: Topic Cards With Resource Counts

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.

[Upgrade NowUpgrade Now](/pricing)

### Installation

Swap `YOUR_EMAIL` and `YOUR_KEY` for the email and license key on your account. Find your license key on your [account page](/account).

**Radix flavor**

bashCopy

```
npx shadcn add "https://ui.beste.co/r/blog66?email=YOUR_EMAIL&license_key=YOUR_KEY"
```

**Base UI flavor**

bashCopy

```
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`).

### Quick start

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.

tsxCopy

```
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:

tsxCopy

```
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",
        },
      ]}
    />
  );
}
```

### Props

| 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                         |

tsCopy

```
type Topic = {
  count: number;
  title: string;
  image: TopicImage;
  href: string;
};

type TopicImage = {
  src: string;
  alt: string;
};

type ActionLink = {
  label: string;
  href: string;
};
```

### Behavior notes

* The stamp on each card is composed, not literal: the block prints `count` in front of `countLabel`, so a card with eleven pieces reads "11 Pieces" and stays correct as the archive grows.
* Passing no `countLabel` prints the bare number rather than a trailing space.
* Cards are a soft `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.
* The image sits in a fixed four by three box at the bottom of the card, so cards with longer titles stay the same height as the rest of the row.
* The eyebrow and the index link share one row above the rule, so the section has a single header line rather than a heading with a link floating beside it.

## More Blog blocks

[View all Blog](/blocks/blog)

[](/block/blog63)

PRO

blog63

### Topic Hub Card With Resource List

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.

[](/block/blog22)

PRO

blog22

### Full-Width Stacked Cards

Vertically stacked blog cards with 2:1 aspect ratio images. Full article summaries with author avatars and read more buttons. Long-form content showcase.

[](/block/blog59)

PRO

blog59

### Journal Card Trio

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.

[](/block/blog5)

PRO

blog5

### Horizontal List with Icons

Vertical stack of horizontal blog cards with left-aligned thumbnails. Features calendar and clock icons for metadata, author titles, and tag badges.

[](/block/blog10)

PRO

blog10

### Alternating Feature Cards

Large alternating left-right blog cards with full article summaries. Image and content switch sides for visual variety. Read more buttons included.

[](/block/blog3)

FREE

blog3

### Card Grid with Authors

Three-column responsive grid of blog cards featuring author avatars, tag badges, and hover zoom effects. Clean card design with date and read time metadata.

## Ship the interface, keep the code.

New blocks, pieces and components every week. Install one with a command and it is yours to edit. No runtime dependency, no upgrade path to fight.

[Browse the libraryBrowse the library](/blocks)[See pricingSee pricing](/pricing)

### Library

* [Blocks](/blocks)
* [Pages](/pages)
* [Pieces](/pieces)
* [Components](/components)
* [Search](/search)

### Learn

* [Docs](/docs)
* [AI & MCP](/docs/mcp)
* [Blog](/blog)
* [Free tools](/tools)
* [What's new?](/changelog)
* [Website Builder](https://beste.co)

### More

* [Pricing](/pricing)
* [Referrals](/referrals)
* [License](/license)
* [GitHub](https://github.com/beste-co/beste-ui)

### Shadcn Blocks

* [Shadcn Hero Blocks](/blocks/hero)
* [Shadcn Feature Blocks](/blocks/feature)
* [Shadcn Pricing Blocks](/blocks/pricing)
* [Shadcn CTA Blocks](/blocks/cta)
* [Shadcn FAQ Blocks](/blocks/faq)
* [Shadcn About Blocks](/blocks/about)
* [Shadcn Stats Blocks](/blocks/stats)
* [Shadcn Footer Blocks](/blocks/footer)
* [Shadcn Navigation Blocks](/blocks/navigation)
* [Shadcn Auth Blocks](/blocks/auth)
* [Shadcn Ecommerce Blocks](/blocks/ecommerce)
* [Shadcn Portfolio Blocks](/blocks/portfolio)
* [Shadcn Showcase Blocks](/blocks/showcase)
* [Shadcn Careers Blocks](/blocks/careers)
* [Shadcn Onboarding Blocks](/blocks/onboarding)
* [Shadcn Coming Soon Blocks](/blocks/coming-soon)
* [Shadcn Post Blocks](/blocks/post)
* [Shadcn Legal Blocks](/blocks/legal)
* [Shadcn Workflow Blocks](/blocks/workflow)
* [Shadcn News Blocks](/blocks/news)

© 2026, [Beste](https://beste.co). All rights reserved.