Category Tabs Filter

Blog

Browse by Category

Find articles that match your interests.

About this block

Category Tabs FilterPRO

Filterable blog grid with tab navigation for categories. Posts automatically filter by category selection with smooth content switching.

Blog8: Category Tabs Filter

A category-tabbed blog grid: a centered badge/heading/description header sits above a shadcn Tabs bar whose triggers come from your category list, and each tab panel renders a responsive card grid of matching posts, every card showing a hover-zoomed cover image, a two-line-clamped title and summary, and an author avatar with read time.

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 Now

Installation

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

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

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/blog8?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/blog8.tsx, plus the badge, avatar, and tabs shadcn/ui primitives it uses for the header eyebrow, author images, and the category tab bar.

Quick start

The installed file exports blog8Demo alongside the block: the exact props behind the preview above. Spread it to get a working filterable blog grid in one line.

tsx
import { Blog8, blog8Demo } from "@/components/beste/block/blog8";

export default function Page() {
  return <Blog8 {...blog8Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Blog8 } from "@/components/beste/block/blog8";

export default function Page() {
  return (
    <Blog8
      badge={{ label: "Blog", variant: "default" }}
      heading="Browse by Category"
      description="Find articles that match your interests."
      categories={[
        { label: "All", value: "all" },
        { label: "Design", value: "design" },
        { label: "Development", value: "development" },
      ]}
      posts={[
        {
          image: { src: "/covers/design-systems.jpg", alt: "Design systems" },
          title: "The Future of Design Systems",
          summary: "How design systems evolve to meet complex app demands.",
          readTime: "8 min read",
          author: { name: "Lisa Park", avatar: { src: "/authors/lisa.jpg", alt: "Lisa Park" } },
          category: "design",
          href: "/blog/design-systems",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Centered eyebrow badge above the heading
headingstringSection heading
descriptionstringMuted paragraph under the heading
categoriesCategory[][]Tab triggers and the panels posts are grouped into
postsBlogPost[][]Cards rendered per tab, filtered by category
classNamestringExtra classes for the outer <section>
ts
type Category = {
  label: string;
  value: string;
};

type Author = {
  name: string;
  title?: string;
  avatar?: { src: string; alt: string };
  href?: string;
};

type Tag = {
  label: string;
  href?: string;
};

type BlogPost = {
  image: { src: string; alt: string };
  title: string;
  summary: string;
  date?: string;
  readTime?: string;
  author?: Author;
  tags?: Tag[];
  href?: string;
  category?: string;
};

Behavior notes

  • The active tab defaults to categories[0]?.value ?? "all", so the first category you list is the one shown on mount; the whole tab bar is hidden when categories is empty.
  • Filtering is by exact string match: a tab with value "all" returns every post untouched, and any other value keeps only posts whose category equals it, so posts with no category only ever appear under the "all" tab.
  • The component renders one TabsContent panel per category and re-filters posts inside each, meaning a post assigned to two categories would need two matching category values to appear in both.
  • Each card's cover image and title link to post.href, falling back to "#" when href is omitted; the image scales to 105% on card hover and the title shifts to text-primary.
  • The author block renders only when post.author is set, and the avatar image only when post.author.avatar is present; otherwise an AvatarFallback shows the author's initials derived from splitting name on spaces.
  • title and summary are each clamped to two lines via line-clamp-2, and readTime (when present) sits opposite the author using text-xs.
  • Post cards are keyed by array index rather than a stable id, so reordering or filtering large lists can reuse DOM nodes unexpectedly; there are no click callbacks, only plain navigation links.

More Blog blocks

View all Blog
FREE

blog61

Filterable Archive Index

A dense blog archive whose subject pills are derived from the posts themselves and carry live counts, filtering a two-column list of hairline rows stamped with a date and a reading time.

PRO

blog43

Editorial Article Grid

A blog listing with an eyebrow over a hairline rule, a two-column heading, and three linked article cards with a hover-zoom image, a category label, a title, an excerpt, and byline.

PRO

blog56

Category Mosaic

A six-slot photo mosaic under a parenthetical eyebrow and a large heading, where every tile is bound to one newsroom category so the grid doubles as a section map, with a ruled legend naming the sections above it.

PRO

blog60

Featured Article With Recent List

A blog section pairing one linked feature with a hover-zoom image, category label, and byline against a hairline list of five recent posts stamped with their date.

PRO

blog13

Sidebar with Categories

Main content area with horizontal post cards plus sidebar. Categories show post counts and popular tags section with clickable badges.

FREE

blog25

Split Image with List

Two-column layout with featured image on left and article list on right. Divider-separated entries with arrow hover effects.