Editorial 404 With Portrait Image

Two-column 404 in a quiet monochrome language: a parenthetical eyebrow, a two-line display headline, a pill call to action and an oversized report-the-link email on the left, a tall captioned photograph on the right.

PRO

Error20: Editorial 404 With Portrait Image

A quiet two-column 404: a short display headline, a pill call to action and an oversized report-the-link email address on one side, a tall captioned photograph on the other.

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.

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

Base UI flavor

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

This installs the block to components/beste/block/error20.tsx, plus the two design-system primitives it renders through: badge7 for the parenthetical eyebrow and button12 for the pill call to action.

Quick start

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

tsx
import { Error20, error20Demo } from "@/components/beste/block/error20";

export default function NotFound() {
  return <Error20 {...error20Demo} />;
}

Then replace the demo with your own props. The contact link is rendered at display size, so keep the label short:

tsx
import { Error20 } from "@/components/beste/block/error20";

export default function NotFound() {
  return (
    <Error20
      badge={{ label: "Not Found" }}
      heading="Empty room, <strong>wrong door</strong>."
      description="There is nothing behind this address. If a link of ours sent you here, tell us."
      button={{ label: "Take me back", href: "/" }}
      contactLink={{ label: "hello@beste.co", href: "mailto:hello@beste.co" }}
      labels={{ caption: "Studio floor, late afternoon", contactTitle: "Report the broken link" }}
      image={{
        src: "https://images.unsplash.com/photo-1569342195780-46e0e695da6e?w=1000&h=1250&fit=crop",
        alt: "Quiet studio interior with soft afternoon light",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string }Parenthetical eyebrow above the headline
headingstringHeadline HTML, rendered as an h1; <strong> marks the muted clause
descriptionstringExplanatory paragraph under the headline
buttonActionLinkPill call to action
contactLinkActionLinkOversized contact link under the hairline rule
labelsError20Labels{}Image caption and the lead-in above the contact link
image{ src: string; alt: string }Tall photograph in the second column
classNamestringExtra classes for the outer <section>
ts
type ActionLink = {
  label: string;
  href: string;
};

type Error20Labels = {
  caption?: string;
  contactTitle?: string;
};

Behavior notes

More Error blocks

View all Error
PRO

error19

Typographic 404 Index

Monochrome 404 built on oversized display type: a parenthetical eyebrow, a display headline with a muted emphasis clause, a pill call to action, and a ruled index of every section on the site.

PRO

error32

404 With Recent Writing

Monochrome 404 for a renamed article: a display headline and pill call to action above three recent entries, each a full-colour image tile with a plain date line and a bold title.

PRO

error14

Editorial 404 Section Index

Editorial 404 with a square eyebrow and status code over a hairline rule, an oversized accent-highlighted headline, and a ruled index of the sections visitors reach for next.

PRO

error21

Server Error Record

Monochrome server-error page: a parenthetical eyebrow over a display headline, a retry pill beside a status link, and a ruled two-column record of the reference, timestamp, subsystem and state.

PRO

error33

Retired Page Record

Monochrome page for deliberately removed content: a display headline, a ruled record of when it was published, retired and why, then a pill link to the replacement beside an archive link.

PRO

error22

Planned Downtime Window

Monochrome maintenance page: a parenthetical eyebrow over a display headline, the downtime window as a ruled three-column record, and a rounded notify-me field with a confirmed state.