Studio 404 that recovers a dead project URL: a square eyebrow and status code over a hairline rule, an accent headline and seal button, then two large project cards with category lines and hover arrow chips.
A studio 404 for a dead project URL: the apology and a seal button sit under the eyebrow rule, then two large project cards with category lines and arrow chips that take the accent colour on hover.
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.
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
npx shadcn add "https://ui.beste.co/r/error24?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/error24?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/error24.tsx, plus the two design-system primitives it renders through: badge6 for the square eyebrow and button1 for the seal call to action.
The installed file exports error24Demo alongside the block: the exact props behind the preview above. Spread it to get a working error page in one line.
import { Error24, error24Demo } from "@/components/beste/block/error24";
export default function NotFound() {
return <Error24 {...error24Demo} />;
}Then pass your own projects. The category line is optional per card:
import { Error24 } from "@/components/beste/block/error24";
export default function NotFound() {
return (
<Error24
label="Lost Page"
code="404"
heading="You found <strong>the one empty shelf</strong>."
description="Whatever sat at this address has been packed away."
button={{ label: "Open the archive", href: "/archive" }}
projectsLabel="Worth a look instead"
projects={[
{
title: "Meridian rebrand",
category: "Identity, 2026",
href: "/work/meridian",
image: { src: "/images/meridian.jpg", alt: "Printed brand identity pieces" },
},
{
title: "Foldwork storefront",
category: "Commerce, 2025",
href: "/work/foldwork",
image: { src: "/images/foldwork.jpg", alt: "Storefront dashboard on a screen" },
},
]}
link={{ label: "See every project", href: "/work" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
label | string | – | Eyebrow text rendered through the square-marker badge |
code | string | – | Status code shown after the eyebrow divider |
heading | string | – | Headline HTML, rendered as an h1; <strong> marks the accent clause |
description | string | – | Explanatory paragraph under the headline |
button | ActionLink | – | Seal call to action under the description |
projectsLabel | string | – | Caption above the project grid |
projects | ProjectItem[] | [] | Project cards |
link | ActionLink | – | Text link under the grid |
className | string | – | Extra classes for the outer <section> |
type ProjectItem = {
title: string;
category?: string;
href: string;
image: { src: string; alt: string };
};
type ActionLink = {
label: string;
href: string;
};4:3 aspect box with object-cover and do not move on hover. The only hover change is the arrow chip beside the title flipping to the accent colour, driven by the named group/error24 group.md breakpoint up, which is why two projects fill a row exactly.projects is empty.heading is injected with dangerouslySetInnerHTML and accepts inline HTML; <strong> takes the accent colour. Keep the value under your own control, never user input.error14
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.
error15
Server error page with a square eyebrow and status code over a hairline rule, a bold accent headline, a bordered incident table of reference, timestamp and service rows, and a retry seal button beside a status page link.
error29
Monochrome 404 led by the status code set as an oversized numeral, with the statement and pill call to action on one side of a hairline rule and the explanation plus display-type links on the other.
error6
The smallest possible 404: the status code and the message sit on one line separated by a vertical rule, stacking on mobile, with a single outline button underneath.
error11
Store 404 for dead product URLs: the message and shopping buttons sit above a four-up product grid with square imagery, prices, and optional strikethrough compare-at prices.
error17
Planned downtime page with a square eyebrow and status code, a bold accent headline, three bordered cells for the maintenance window, a working notify-me email form with a success state, and a live progress link.