A sticky intro beside four resource cards on a muted fill, each one a whole link that inverts to ink on hover, carrying a ringed icon, a serif title, a line of context and a meta value beside its arrow.
A sticky intro beside four resource cards on a muted fill, each a whole link that inverts to ink on hover.
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.
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/about83?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/about83?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/about83.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports about83Demo alongside the block: the exact props behind the preview above. Spread it to get a working linked Resource Cards in one line.
import { About83, about83Demo } from "@/components/beste/block/about83";
export default function Page() {
return <About83 {...about83Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { About83 } from "@/components/beste/block/about83";
export default function Page() {
return (
<About83
eyebrow="Everything else"
heading="The pages people go looking for."
description="The practical documents, kept current."
button={ label: "Ask for something missing", href: "/contact", tone: "outline" }
resources={[
{
icon: "file",
title: "Fees and policies",
description: "What a season costs and how cancellations work.",
meta: "Revised August",
href: "/policies",
},
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, rendered as an h2 through Text1 |
description | string | – | Intro paragraph in the sticky column |
button | ActionButton | – | Pill action under the intro |
resources | Resource[] | [] | Linked cards, two across from sm |
className | string | – | Extra classes for the outer <section> |
type ResourceIcon = "book" | "file" | "history" | "help";
type Resource = {
icon: ResourceIcon;
title: string;
description: string;
meta?: string;
href: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};lg:sticky lg:top-24, so the intro holds while the cards move; below lg it stacks and the stickiness is dropped.icon is a key into a fixed map of four Lucide icons, and an unknown key falls back to BookOpen instead of rendering nothing.meta sits on the closing row opposite the arrow, which keeps a revision date away from the description it does not belong to.mt-auto, so cards of different copy length line up.motion-safe:.about25
Side-by-side intro with animated number counters on scroll, expanding accent bars, and hover-lift value cards. For impact-driven companies.
about46
An about intro followed by a horizontally scrollable strip mixing image, stat, quote and values cards.
about64
Principles section with a header and a three-column grid of six bordered cards, each pairing a circular icon with a title and description.