A two-column directory of free tools, each card a linked row with a tinted icon tile, a name and one line on what it does, closed by a seal button to the full list.
A two-column directory of free tools, each card a linked row with a tinted icon tile, a name and one line on what it does, closed by a seal button to the full list.
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/feature269?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/feature269?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/feature269.tsx, the badge6 component used for the eyebrow and the button1 seal button under the grid.
The installed file exports feature269Demo alongside the block: the exact props behind the preview above. Spread it to get a working tool directory in one line.
import { Feature269, feature269Demo } from "@/components/beste/block/feature269";
export default function ToolsPage() {
return <Feature269 {...feature269Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Contrast, Type } from "lucide-react";
import { Feature269 } from "@/components/beste/block/feature269";
export default function ToolsPage() {
return (
<Feature269
eyebrow="Free tools"
heading="Small tools we built for our own work"
description="Every one of these started as a script someone got tired of rewriting."
tools={[
{
icon: Contrast,
title: "Contrast checker",
description: "Test a pair of colours against the accessibility thresholds.",
href: "/tools/contrast",
},
{
icon: Type,
title: "Type scale builder",
description: "Pick a base size and a ratio, then copy the scale out.",
href: "/tools/type-scale",
},
]}
button={{ label: "See every tool", href: "/tools" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label above the hairline rule |
heading | string | – | Section heading under the rule |
description | string | – | Supporting paragraph |
tools | ToolItem[] | [] | Linked cards, two to a row on desktop |
button | ActionButton | – | Seal button to the full list |
className | string | – | Extra classes for the outer section |
type ToolItem = {
icon: LucideIcon;
title: string;
description: string;
href: string;
};
type ActionButton = {
label: string;
href: string;
};bg-muted/50 with the glyph in the accent colour, so a directory of twelve tools stays monochrome instead of turning into a colour chart.Link, and its border darkens while the title moves to the accent colour through a named group/feature269.span elements rather than block tags, which keeps the whole card a valid link.md and two above it, with the seal button centered underneath.feature123
Responsive grid of linked tool cards with descriptions and tag badges. Excellent for developer tools showcase, API documentation, or SDK listings.
feature147
Responsive grid of tool cards with icons, descriptions, and linked tiles. Excellent for tech stack showcase, integrated tools, or component library.
feature75
2-column grid of linked product cards with multiple badge tags and learn-more arrows. Perfect for showcasing product suites, solution offerings, or categorized tools.
feature63
3-column grid of image cards with text overlay, hover zoom effect, and arrow indicators. Perfect for showcasing team use cases, industry solutions, or department-specific features.
feature196
Three-column grid of clickable feature cards. Each card has a top-left icon, top-right diagonal arrow, title, and description. Cards lift on hover with a configurable accent color (emerald, primary, foreground, rose, blue, amber, violet, sky, orange, teal). Two-tone heading splits a primary phrase from a colored highlight.