Press Coverage ListPRO

A press section built around a soft panel holding the standout quote and its publication, followed by hairline coverage rows that align publication, headline, and date, and a press kit action to close.

News36: Press Coverage List

Press section built around a soft panel holding the standout quote and the publication that ran it, followed by coverage rows that line up publication, headline, and date across a hairline list, and a press kit action to close.

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

Base UI flavor

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

This installs the block to components/beste/block/news36.tsx plus the badge23 and button21 components it uses for the eyebrow and the press kit action.

Quick start

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

tsx
import { News36, news36Demo } from "@/components/beste/block/news36";

export default function PressPage() {
  return <News36 {...news36Demo} />;
}

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

tsx
import { News36 } from "@/components/beste/block/news36";

export default function PressPage() {
  return (
    <News36
      badge={{ label: "Press" }}
      heading="Where people are writing about the work"
      featured={{
        publication: "Health Tech Weekly",
        quote: "The rare clinical tool that reads like someone has stood behind a desk.",
        date: "April 9, 2026",
        link: { label: "Read the full piece", href: "https://example.com/piece" },
      }}
      items={[
        {
          publication: "The Practice Journal",
          headline: "The quiet economics of a clinic that stops chasing paperwork",
          date: "March 27, 2026",
          href: "https://example.com/coverage",
        },
      ]}
      footnote={{
        label: "Writing about us? The press kit has logos and the boilerplate.",
        button: { label: "Download the press kit", href: "/press-kit" },
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Monospace eyebrow above the hairline rule, rendered via Badge23
headingstringSection heading in the left column
descriptionstringSupporting paragraph, right-aligned from md up
featuredFeaturedMentionSoft panel holding the standout quote and its source
itemsMention[][]Coverage rows under the panel
footnote{ label: string; button: ActionLink }Press kit line and outline button
classNamestringExtra classes for the outer <section>
ts
type ActionLink = { label: string; href: string };

type FeaturedMention = {
  publication: string;
  quote: string;
  date: string;
  link: ActionLink;
};

type Mention = {
  publication: string;
  headline: string;
  date: string;
  href: string;
};

Behavior notes

More News blocks

View all News
PRO

news41

Press And Brand Kit

A media kit listing downloadable assets as linked hairline rows with their formats, a swatch column naming each colour and where it is used, and two usage rules set as an allowed and a not-allowed card.

PRO

news32

Magazine Cover

Editorial magazine layout with dramatic cover story, serif typography, author bylines, and featured story grid.

PRO

news4

Magazine News Grid

Magazine-style news section with large featured article and 2x2 grid. Dynamic category filtering.

FREE

news37

Filterable Newsroom Index

A newsroom whose kind pills are derived from the announcements and carry live counts, narrowing a chronological list of hairline rows that align the kind, the date, and the headline with its summary.

PRO

news7

Newspaper Style

Classic newspaper layout with serif typography, featured article spanning two columns, and sidebar articles.

PRO

news26

Opinion & Editorial

Opinion pieces with pull quotes, author profiles, and category badges. Editorial-style layout.