Mixed Release MasonryPRO

A press office masonry wall under a parenthetical eyebrow and a large heading, mixing photo cards with image-free release cards on soft muted surfaces, each release card closing on a read-through line with a corner arrow.

Blog53: Mixed Release Masonry

A press office masonry wall that mixes photo cards with image-free release cards on soft muted surfaces, beneath a Badge7 eyebrow and a large heading. The card type belongs to the position in the wall, so the two release cards always land in different columns instead of stacking into a single band.

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/blog53?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/blog53.tsx and its dependencies, including the Badge7 component it renders.

Quick start

The installed file exports blog53Demo alongside the block: the exact props behind the preview above. Spread it to get a working wall in one line.

tsx
import { Blog53, blog53Demo } from "@/components/beste/block/blog53";

export default function Page() {
  return <Blog53 {...blog53Demo} />;
}

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

tsx
import { Blog53 } from "@/components/beste/block/blog53";

export default function Page() {
  return (
    <Blog53
      badge={{ label: "Press office" }}
      heading="Northwind newsroom"
      description="Filings and operating updates, published as they clear review."
      labels={{ releaseLink: "Read the release" }}
      items={[
        {
          image: { src: "/press/aragon.jpg", alt: "Battery cabinets in a storage hall" },
          category: "Operations",
          kind: "Press release",
          title: "Aragon storage campus enters commercial operation",
          summary: "The 240 MWh facility begins dispatch two quarters early.",
          date: "March 4, 2026",
          author: { name: "Maria Santos", title: "Tech Lead" },
          href: "/press/aragon-storage",
        },
        {
          image: { src: "/press/q4.jpg", alt: "Quarterly figures on a screen" },
          category: "Markets",
          kind: "Financial",
          title: "Fourth-quarter revenue climbs 12 percent",
          summary: "Recurring service contracts pass half of group revenue.",
          date: "February 26, 2026",
          author: { name: "David Chen", title: "Backend Engineer" },
          href: "/press/q4-revenue",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badgeBadgeBadge7 parenthetical eyebrow above the heading
headingstringSection heading
descriptionstringMuted supporting paragraph under the heading
itemsArticle[][]Cards rendered into the wall, in order
labelsBlog53Labels{}Text of the release card's read-through line; the line is dropped when unset
classNamestringExtra classes merged onto the outer section element
ts
type Badge = {
  label: string;
};

type Blog53Labels = {
  releaseLink?: string;
};

type Article = {
  image: ArticleImage;
  category: string;
  kind: string;
  title: string;
  summary: 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;
};

Photo cards render category, title, and the author line; release cards render kind, date, title, and summary. Every field is used by one card type or the other, so fill all of them even though any single card only shows a subset.

Behavior notes

More Blog blocks

View all Blog
PRO

blog55

Press Release Wall

A three-column wall of image-free press release cards on soft muted surfaces under a parenthetical eyebrow and a large heading, each card pairing a release type and date with a headline, dek, byline, and a ruled category row.

PRO

blog52

Newsroom Masonry

A CSS-columns masonry of linked newsroom cards under a parenthetical eyebrow and a large heading, where the image aspect ratio cycles by position so the wall keeps an uneven, magazine-like rhythm.

PRO

blog51

Mixed Tile Mosaic

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.

PRO

blog49

Quad Ledger

An image-free newsroom index with a square eyebrow, a two-column heading band over a hairline rule, four linked release cards that each pair an accent counter with a kicker, headline, dek, and byline, and a seal button to the full archive.

PRO

blog12

Masonry Pinterest Grid

Pinterest-style masonry layout with varying content heights. CSS columns create organic flow with cards of different summary lengths.

PRO

blog45

Press Room Digest

A press room listing with a square eyebrow, a bold heading and intro over a hairline rule, a wide lead release with a panoramic image, and the remaining releases stacked as ruled rows that pair a date column with a release type, headline, dek, and a square arrow chip.

Markdown version