Spotlight
Along the river, on foot, for an hour. Some conversations need a horizon rather than a wall, and a pace that keeps the body busy while the mind catches up.
A single feature spotlight inside one soft muted panel: an eyebrow, a serif heading that settles in word by word, an intro, two ruled points and a sliding-marker pill on the left, and a square photograph drifting inside its frame on the right.
A single feature spotlit inside one soft panel: heading, intro, two ruled points and a pill on one side, a square photograph drifting inside its frame 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.
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/feature286?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature286?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature286.tsx plus the button22 sliding-marker pill and the text1 word stagger it uses.
The installed file exports feature286Demo alongside the block: the exact props behind the preview above. Spread it to get a working spotlight panel in one line.
import { Feature286, feature286Demo } from "@/components/beste/block/feature286";
export default function Page() {
return <Feature286 {...feature286Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Feature286 } from "@/components/beste/block/feature286";
export default function Page() {
return (
<Feature286
eyebrow="Spotlight"
heading="Walking sessions, every Friday."
description="Along the river, on foot, for an hour."
button={{ label: "Book a Friday", href: "/walking", tone: "dark" }}
image={{ src: "/photos/path.jpg", alt: "A quiet path leading through a green forest" }}
points={[
{ title: "One route, no surprises", description: "The same riverside loop each week, flat and quiet." },
{ title: "Rain or not", description: "We walk in light rain and swap to the room in heavy." },
]}
/>
);
}| 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 under the heading |
button | ActionButton | – | Pill action at the foot of the copy column |
image | { src: string; alt: string } | – | Square photograph in the other half |
points | Point[] | [] | Ruled points, two across from sm |
className | string | – | Extra classes for the outer <section> |
type Point = {
title: string;
description: string;
};
type ActionButton = {
label: string;
href: string;
tone?: "primary" | "light" | "dark" | "outline";
};flex with justify-between, so the points and the button sit at the foot of the panel and line up with the bottom of the square photograph however short the copy is.border-foreground/10 rather than border-border, because the panel is a muted surface and the standard border token would disappear into it.bg-background/50 placeholder, so the empty frame reads as a lighter inset of the panel rather than as a grey hole while the file loads.delay={0.3} so it follows the eyebrow, and the paragraph and the foot block are given fixed delays after it rather than being derived from the word count.-10% to 10% against a 1.2 scale and clears from blur(24px) on decode, with a complete check on mount for cached files.sm, so a pair reads as a small ruled table rather than as a stacked list.image the copy takes the full width of the panel.feature244
A centered feature with an eyebrow, light heading, and paragraph over a wide image tile that floats a live command search bar, followed by a row of quick-filter chips.
feature231
Clickable tab chips switch a large spotlight panel with image, title, description, and a checklist, with an optional auto-loop.
feature207
Service section: eyebrow and large title with a right-aligned summary, a wide hero image, and a bold closing statement.
feature172
Features displayed inside an interactive command palette UI with live search filtering, grouped results, keyboard shortcuts, and hover states. Inspired by macOS Spotlight and VS Code command palette.
feature281
The classic three-column feature: a centred serif heading that settles in word by word and an intro, three columns with a round muted icon, a serif title and a description that arrive in turn, and a sliding-marker pill beneath.
feature299
A centred serif headline that settles in word by word, then an ink panel that cycles through short request and reply pairs: the request in serif, the reply in mono a beat later, with thin progress bars to jump between them and a pause on hover. A pill that copies the install command on click and a sliding-marker pill close the section.