Large alternating left-right blog cards with full article summaries. Image and content switch sides for visual variety. Read more buttons included.
A vertical stack of full-width blog cards where each article places a linked cover image beside a content column (tags, title, summary, author, and a "Read article" button), with the image and text swapping sides on every odd-indexed card at the lg breakpoint, above an optional centered header of badge, heading, and description.
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/blog10?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/blog10?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/blog10.tsx, plus the badge, avatar, and button shadcn/ui primitives it uses for the section eyebrow and post tags, the author avatar, and the read-more button.
The installed file exports blog10Demo alongside the block: the exact props behind the preview above. Spread it to get a working alternating card list in one line.
import { Blog10, blog10Demo } from "@/components/beste/block/blog10";
export default function Page() {
return <Blog10 {...blog10Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Blog10 } from "@/components/beste/block/blog10";
export default function Page() {
return (
<Blog10
badge={{ label: "Featured", variant: "default" }}
heading="Deep Dives"
description="In-depth articles exploring complex topics in web development."
labels={{ readMoreLabel: "Read article" }}
posts={[
{
image: { src: "/posts/design-systems.jpg", alt: "Design systems" },
title: "The Future of Design Systems",
summary: "Exploring how design systems evolve to meet complex applications.",
date: "January 15, 2026",
readTime: "8 min read",
author: {
name: "Lisa Park",
title: "Senior Developer",
avatar: { src: "/avatars/lisa.jpg", alt: "Lisa Park" },
},
tags: [{ label: "Frontend", href: "/blog/frontend" }],
href: "/blog/design-systems",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Centered header eyebrow badge |
heading | string | – | Section heading text |
description | string | – | Paragraph shown under the heading |
posts | BlogPost[] | [] | Cards rendered in the stack |
labels | { readMoreLabel?: string } | – | Overrides the read-more button text |
className | string | – | Extra classes for the outer <section> |
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;
};badge, heading, or description is truthy; when all three are omitted the stack of cards renders alone.index % 2 === 1 adds lg:flex-row-reverse, so odd cards (the second, fourth, and so on) put the image on the right. Below the lg breakpoint every card stacks image over content.posts is keyed by array index, not a stable id, so reordering or filtering the list can confuse React's reconciliation.post.href, falling back to "#" when it is absent; each tag links to tag.href with the same "#" fallback, so an unset href yields a real anchor that navigates nowhere.AvatarFallback is derived from the author name by taking the first character of each space-split word, so "Lisa Park" becomes LP; it only shows if author.avatar.src fails to load, and the whole author block is skipped when post.author is absent.post.date and post.readTime with a · separator only when readTime is set; note date itself is optional, so with only a read time the line renders as undefined · 8 min read.author.title is part of the Author type but is never rendered by the component; only the author name and the date/read-time line appear.group/blog10 hover state and shifts the title color to text-primary; there are no JavaScript callbacks or internal state in this block.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.
blog5
Vertical stack of horizontal blog cards with left-aligned thumbnails. Features calendar and clock icons for metadata, author titles, and tag badges.
blog4
Large featured article with side-by-side image and content, followed by a three-column grid of secondary posts. Read more buttons and author details included.
blog30
Grid of image cards with gradient overlays. Summaries expand on hover with smooth max-height animation. Titles always visible with white text.
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.
blog13
Main content area with horizontal post cards plus sidebar. Categories show post counts and popular tags section with clickable badges.