Journal Card TrioPRO

Three linked journal cards, each with a four-by-three image, a category, a display title, an excerpt and a ruled byline pinned to the bottom of the card so uneven excerpts still align.

Blog59: Journal Card Trio

Three linked journal cards, each with a four-by-three image, a category, a display title, an excerpt and a ruled byline pinned to the bottom, so uneven excerpt lengths still line up along one baseline.

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

Base UI flavor

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

This installs the block to components/beste/block/blog59.tsx plus the badge7 eyebrow and button12 pill button it uses.

Quick start

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

tsx
import { Blog59, blog59Demo } from "@/components/beste/block/blog59";

export default function Page() {
  return <Blog59 {...blog59Demo} />;
}

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

tsx
import { Blog59 } from "@/components/beste/block/blog59";

export default function Page() {
  return (
    <Blog59
      badge={{ label: "Recently written" }}
      heading="Three pieces worth the fifteen minutes."
      description="Longer essays, each built around a project we can now talk about."
      posts={[
        {
          image: { src: "/journal/type.jpg", alt: "Printed letterforms" },
          category: "Typography",
          title: "Buying a typeface is the easy part",
          excerpt: "Licensing, hinting, fallback stacks and two conversations with legal.",
          author: "Ilse Brandt",
          date: "24 June 2026",
          href: "/journal/typefaces",
        },
      ]}
      button={{ label: "See all writing", href: "/journal" }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow label rendered as a Badge7
headingstringSection heading in the left column
descriptionstringSupporting paragraph, right-aligned from md up
postsJournalPost[][]One linked card per article
buttonActionButtonPill CTA under the grid, rendered as Button12
classNamestringExtra classes for the outer <section>
ts
type JournalPost = {
  image: { src: string; alt: string };
  category: string;
  title: string;
  excerpt: string;
  author: string;
  date: string;
  href: string;
};

type ActionButton = {
  label: string;
  href: string;
};

Behavior notes

More Blog blocks

View all Blog
PRO

blog66

Topic Cards With Resource Counts

Three tinted topic cards, each stamped with how many pieces sit behind it, the topic name, and an image filling the lower half, alongside a link out to the full topic index.

FREE

blog57

Journal Lead And Index

Editorial journal preview pairing one lead entry with a wide image, category, title, excerpt and date against a ruled index of three shorter entries, headed by an eyebrow, a display heading and an outline pill CTA.

PRO

blog22

Full-Width Stacked Cards

Vertically stacked blog cards with 2:1 aspect ratio images. Full article summaries with author avatars and read more buttons. Long-form content showcase.

PRO

blog5

Horizontal List with Icons

Vertical stack of horizontal blog cards with left-aligned thumbnails. Features calendar and clock icons for metadata, author titles, and tag badges.

FREE

blog3

Card Grid with Authors

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.

PRO

blog63

Topic Hub Card With Resource List

A topic hub card whose left third is a photo panel with the topic title set on a scrim over it, next to a two-column body: a short summary on one side and the posts belonging to the topic listed by title alone on the other.

Markdown version