A six-slot magazine mosaic with a parenthetical eyebrow and a large heading, pairing a dominant two-by-two tile with a tall tile, wide tiles, and unit tiles that each caption their photo over a graded scrim.
A blog listing section that lays articles into a fixed magazine mosaic of six tiles: a dominant two-by-two tile, a tall tile, two wide tiles, and two unit tiles, each captioning its own photo over a graded scrim. The tile shape belongs to the position in the grid, so the mosaic keeps its rhythm whatever the copy length.
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.
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/blog50?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/blog50?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/blog50.tsx and its dependencies, including the Badge7 component it renders.
The installed file exports blog50Demo alongside the block: the exact props behind the preview above. Spread it to get a working mosaic in one line.
import { Blog50, blog50Demo } from "@/components/beste/block/blog50";
export default function Page() {
return <Blog50 {...blog50Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Blog50 } from "@/components/beste/block/blog50";
export default function Page() {
return (
<Blog50
badge={{ label: "Press office" }}
heading="Northwind newsroom"
description="Operating updates and filings, published as they are released."
items={[
{
image: { src: "/press/aragon.jpg", alt: "Storage containers at dusk" },
category: "Operations",
title: "Northwind opens its second grid-scale storage site in Aragon",
date: "Mar 4, 2026",
author: { name: "David Chen", title: "Backend Engineer" },
href: "/press/aragon-storage",
},
{
image: { src: "/press/q1.jpg", alt: "Quarterly figures on a table" },
category: "Markets",
title: "First-quarter revenue rises 12 percent",
date: "Feb 26, 2026",
author: { name: "Lisa Park", title: "Senior Developer" },
href: "/press/q1-revenue",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
badge | Badge | – | Badge7 parenthetical eyebrow above the heading |
heading | string | – | Section heading |
description | string | – | Muted supporting paragraph under the heading |
items | Article[] | [] | Articles placed into the mosaic tiles, in order |
className | string | – | Extra classes merged onto the outer section element |
type Badge = {
label: string;
};
type Article = {
image: ArticleImage;
category: string;
title: string;
date: string;
author: Author;
href: string;
};
type ArticleImage = {
src: string;
alt: string;
};
type Author = {
name: string;
title?: string;
avatar?: { src: string; alt: string };
href?: string;
};Only author.name is rendered, in the tile byline. The optional title, avatar, and href fields on the author exist for shape parity with the other blog blocks and are not displayed here.
col-span-2 row-span-2 dominant tile with the largest title, items 1, 4, and 5 get wide col-span-2 tiles, and items 2 and 3 get single cells. The six spans tile a four-column, three-row grid exactly (4 + 2 + 1 + 1 + 2 + 2 = 12 cells), so the mosaic never leaves a gap at the end of the last row.md up, with fixed 11rem rows growing to 13rem. Captions sit over a top-to-bottom scrim rather than a flat wash, so the type stays readable against a bright photo without dulling the image.Link wrapping the whole tile, with a visible focus ring. There is no state, no timer, and no click handler; photos carry no hover treatment, so the block renders identically on the server and the client.blog56
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.
blog51
A six-slot mosaic under a parenthetical eyebrow and a large heading, mixing full-bleed photo tiles with flat text tiles on muted and inverted surfaces, where the treatment belongs to the slot and every tile advances one story through a larger article pool on a timer, staggered 100 milliseconds apart so the refresh reads as a wave running left to right, pausing on hover, focus, hidden tabs, and reduced motion.
blog43
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.
blog27
Classic newspaper layout with serif fonts and bordered headline. Large main story on left, stacked secondary stories on right with dividers.