Multi-part tutorial series with numbered parts. Book icon, part count, and progress-style list. Perfect for step-by-step learning content.
Renders a centered badge/heading/description header above a vertical stack of series cards, where each card shows a book icon with a "N Part Series" label, the series title and description, and a list of post rows linking to each part with a thumbnail, title, summary, optional date and read time, and a chevron that slides on hover.
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/blog36?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/blog36?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/blog36.tsx, plus the badge shadcn/ui primitive it uses for the header eyebrow.
The installed file exports blog36Demo alongside the block: the exact props behind the preview above. Spread it to get a working tutorial series listing in one line.
import { Blog36, blog36Demo } from "@/components/beste/block/blog36";
export default function Page() {
return <Blog36 {...blog36Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Blog36 } from "@/components/beste/block/blog36";
export default function Page() {
return (
<Blog36
badge={{ label: "Learn", variant: "default" }}
heading="Tutorial Series"
description="Step-by-step guides to master new skills."
series={[
{
title: "Building a Design System",
description: "Create a scalable design system from scratch.",
totalParts: 2,
posts: [
{
image: { src: "/foundations.jpg", alt: "Foundations" },
title: "Part 1: Foundations & Principles",
summary: "Establishing core design tokens and guidelines.",
date: "January 5, 2026",
readTime: "8 min",
href: "/blog/design-system-1",
},
{
image: { src: "/components.jpg", alt: "Components" },
title: "Part 2: Component Architecture",
summary: "Building reusable component patterns.",
date: "January 8, 2026",
readTime: "12 min",
href: "/blog/design-system-2",
},
],
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Header eyebrow badge above the heading |
heading | string | – | Header heading text |
description | string | – | Header sub-copy below the heading |
series | Series[] | [] | Series cards rendered in the vertical stack |
className | string | – | Extra classes for the outer <section> |
type BlogPost = {
image: { src: string; alt: string };
title: string;
summary: string;
date?: string;
readTime?: string;
href?: string;
};
type Series = {
title: string;
description: string;
totalParts: number;
posts: BlogPost[];
};badge, heading, or description is provided; with all three omitted the series stack sits at the top of the section.badge.variant falls back to "default" when unset, and heading and description each render only when individually present.totalParts value is a display-only label rendered as "N Part Series"; it is not derived from posts.length, so the number can disagree with the actual count of rows if you set them inconsistently.next/link Link pointing at post.href, defaulting to "#" when href is omitted, so a post without a link becomes a same-page anchor rather than being disabled.title and summary are each clamped to a single line with line-clamp-1, and the date / readTime metadata row renders each span only when that field is present (read time is suffixed with " read").<img> with object-cover inside a fixed size-16 square; there is no next/image, lazy-loading, or aspect-ratio handling beyond the crop.translate-x-1) and animates back to translate-x-0 on hover via the group/blog36 hover group; it is decorative only and carries no separate click target."use client" directive at the top of the file.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.
blog14
Four-column grid mixing blog cards with an integrated newsletter signup card. Email input and subscribe button embedded in the layout.
blog10
Large alternating left-right blog cards with full article summaries. Image and content switch sides for visual variety. Read more buttons included.
blog5
Vertical stack of horizontal blog cards with left-aligned thumbnails. Features calendar and clock icons for metadata, author titles, and tag badges.
blog3
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.
blog30
Grid of image cards with gradient overlays. Summaries expand on hover with smooth max-height animation. Titles always visible with white text.