The agent asks the library for a section by meaning, not by file name, and gets back the three closest matches.
It writes ordinary components into the folders you already use and wires the imports itself.
Colours, radius and type come from your tokens, so a new section never looks pasted in.
Headlines and body text are rewritten for your product while the structure stays intact.
Entrances, parallax and reveals arrive calibrated and switch off for people who prefer reduced motion.
It is one MCP entry in your agent config. Remove the line and everything else stays as it was.
A sticky left column holds the eyebrow, a serif headline that settles in word by word, an intro, a rounded pill that copies the install command on click and a sliding-marker pill; on the right a long ruled list of numbered points settles in row by row as the page scrolls past.
A sticky left column holding the case and the command, against a long ruled list on the right that settles in row by row as the page moves past it.
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/feature296?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature296?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature296.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature296Demo alongside the block: the exact props behind the preview above. Spread it to get a working section in one line.
import { Feature296, feature296Demo } from "@/components/beste/block/feature296";
export default function Page() {
return <Feature296 {...feature296Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature296 } from "@/components/beste/block/feature296";
export default function Page() {
return (
<Feature296
eyebrow="What happens after install"
heading="Quiet changes to how pages get made."
description="The command runs in a few seconds. The list is what it leaves behind."
command="npx your-cli@latest"
copyLabel="Copy command"
copiedLabel="Copied"
buttons={[{ label: "Read the docs", href: "/docs", tone: "outline" }]}
items={[
{ number: "01", title: "Search inside the conversation", description: "The agent asks the library for a section by meaning." },
{ number: "02", title: "Placement in your tree", description: "It writes components into the folders you already use." },
]}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Small-caps line above the heading |
heading | string | – | Section heading, through Text1 |
description | string | – | Paragraph under the heading |
command | string | – | The install command; clicking the pill copies it |
copyLabel | string | – | Accessible name for the pill in its resting state |
copiedLabel | string | – | Accessible name and live-region text once copied |
buttons | ActionButton[] | [] | Pill actions under the command |
items | Item[] | [] | Numbered rows on the right |
className | string | – | Extra classes for the outer <section> |
type Item = {
number: string;
title: string;
description: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};top-24 to clear a fixed header. Change that if your navigation is taller.feature285
A feature list with a sticky column, where a serif heading settles in word by word above the intro and a pill action, beside ruled rows that each blur in with a round muted icon, a serif title and a description.
feature298
A header with a serif headline that settles in word by word and a pill that copies the install command on click, then a rounded pill tab list (pages, sections, components). Each tab pairs a title, a paragraph and a short list of example prompts in mono with a photo that blurs in and drifts on scroll.
feature292
Three numbered columns under rules that draw in from the left as they scroll into view: the first carries a rounded pill that copies the install command on click, the next two show a sample prompt and a resulting file path in muted mono panels. Serif headline settles in word by word, a sliding-marker pill sits at the right end of the header.
feature264
A feature with a heading column that sticks while three labelled groups of checked capabilities scroll past it, closing on a footnote under a hairline.