Announcement StoryPRO

A single announcement laid out like an article, with a standfirst, a full-bleed captioned photo band, a reading column, and a sticky rail carrying the key facts and related entries.

News38: Announcement Story

A single announcement laid out like an article, with a standfirst, a full-bleed captioned photo band, a reading column and a sticky rail carrying the key facts and related entries.

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

Base UI flavor

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

This installs the block to components/beste/block/news38.tsx plus the badge23 and button21 components it uses for the eyebrow and the actions.

Quick start

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

tsx
import { News38, news38Demo } from "@/components/beste/block/news38";

export default function AnnouncementPage() {
  return <News38 {...news38Demo} />;
}

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

tsx
import { News38 } from "@/components/beste/block/news38";

export default function AnnouncementPage() {
  return (
    <News38
      badge={{ label: "Announcement" }}
      kicker="14 May 2026 · Product"
      heading="Four clinics can now share one waiting list"
      standfirst="Multi-site capacity sharing is out of testing and on every plan."
      image={{ src: "/news/clinic.jpg", alt: "A clinician in a bright clinic" }}
      caption="Bramble Health ran the first shared waiting list across three sites in March."
      facts={[
        { label: "Available on", value: "Every plan, no extra charge" },
        { label: "Tested by", value: "3 practices, 11 weeks" },
      ]}
      body={[
        "Until now a group running four clinics ran four waiting lists.",
        "Capacity is now modelled at group level while rooms and hours stay per site.",
      ]}
      buttons={[
        { label: "Read the release note", href: "/changelog/3-4-0" },
        { label: "See how it works", href: "/product/waiting-list" },
      ]}
      relatedTitle="Around the same time"
      related={[
        {
          kind: "Company",
          title: "We are profitable, and staying at eighteen people",
          date: "02 May 2026",
          href: "/news/profitable",
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Eyebrow above the kicker, rendered through Badge23
kickerstringDate and category line above the heading
headingstringAnnouncement headline
standfirststringOpening summary, capped at max-w-2xl
image{ src: string; alt: string }Full-bleed band under the standfirst
captionstringCaption under the photograph
factsFact[][]Key facts in the sticky rail
bodystring[][]Article paragraphs in reading order
buttonsActionLink[][]Actions, first solid and the rest outlined
relatedTitlestringHeading above the related entries
relatedRelated[][]Linked nearby announcements
classNamestringExtra classes for the outer section
ts
type ActionLink = {
  label: string;
  href: string;
};

type BandImage = {
  src: string;
  alt: string;
};

type Fact = {
  label: string;
  value: string;
};

type Related = {
  kind: string;
  title: string;
  date: string;
  href: string;
};

Behavior notes

More News blocks

View all News
PRO

news29

News Stories

Instagram-style story circles with fullscreen viewer, auto-advance progress bars, channel avatars, and LIVE badges.

PRO

news8

Numbered Headlines

Compact numbered headline list with large index numbers, category badges, and source attribution.

PRO

news39

Inverted Company Announcement

A company update held in one dark panel, pairing a light heading and four supporting figures over a hairline rule with a bordered column that floats a live press contact card.

PRO

news1

Breaking News Ticker

Animated breaking news ticker with live indicator, category badges, and auto-rotating headlines.

PRO

news25

Category Hub

News categories grid with story counts, top story preview, and browse links.

PRO

news7

Newspaper Style

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