Wide cinematic banners with centered text overlay. Large bold titles on semi-transparent backgrounds. Immersive visual storytelling format.
A stacked list of full-bleed banner cards where each post renders a 4:3 (widening to 21:9 on larger screens) image behind a dark bg-black/50 overlay, with the post title, summary, and an author-name-plus-date byline centered over it, the whole card wrapped in a link that scales the image 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/blog31?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/blog31?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/blog31.tsx, plus the badge shadcn/ui primitive it uses for the optional section eyebrow.
The installed file exports blog31Demo alongside the block: the exact props behind the preview above. Spread it to get a working banner list in one line.
import { Blog31, blog31Demo } from "@/components/beste/block/blog31";
export default function Page() {
return <Blog31 {...blog31Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Blog31 } from "@/components/beste/block/blog31";
export default function Page() {
return (
<Blog31
badge={{ label: "Featured", variant: "default" }}
heading="Visual Stories"
description="Immersive reading experiences."
posts={[
{
image: { src: "/covers/design-systems.jpg", alt: "Design" },
title: "The Future of Design Systems",
summary: "How design systems are evolving.",
date: "January 15, 2026",
author: { name: "Lisa Park", title: "Senior Developer" },
href: "/blog/design-systems",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | { label: string; variant?: "default" | "secondary" | "outline" } | – | Optional section eyebrow badge above the heading |
heading | string | – | Section heading rendered as an h2 |
description | string | – | Subheading paragraph below the heading |
posts | BlogPost[] | [] | Banner cards rendered in a vertical stack |
className | string | – | Extra classes merged onto the outer <section> |
type Author = {
name: string;
title?: string;
avatar?: { src: string; alt: string };
};
type BlogPost = {
image: { src: string; alt: string };
title: string;
summary: string;
date?: string;
readTime?: string;
author?: Author;
tags?: { label: string }[];
href?: string;
};<div> only appears when at least one of badge, heading, or description is provided, and each of the three is then rendered individually only if present.next/link <Link> whose target is post.href, falling back to "#" when href is omitted, so a post with no link still renders as a clickable no-op.post.author?.name and post.date joined by a middle dot, so a post missing either an author or a date will show a stray · with a blank on one side.author.name is used in the overlay; the author.title, author.avatar, post.summary aside, post.readTime, and post.tags fields exist on the type but are never rendered by this block.index, so reordering or filtering posts can cause React to reuse the wrong DOM nodes.scale-105 over 500ms via the group/blog31 scope, while overflow-hidden on the <article> clips the enlarged image to the card bounds; there is no interactivity or state beyond this CSS transition.<img> tag (not next/image), positioned absolutely to fill the aspect-ratio box with object-cover.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.
blog30
Grid of image cards with gradient overlays. Summaries expand on hover with smooth max-height animation. Titles always visible with white text.
blog10
Large alternating left-right blog cards with full article summaries. Image and content switch sides for visual variety. Read more buttons included.
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.
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.