Service Grid With IconsFREE

Centered header, three-column grid of capability cards, and an optional CTA with bottom text. Each card leads with a Lucide icon.

Feature3: Service Grid With Icons

Centered header above a three-column grid of capability cards, each leading with a Lucide icon over a title and description, closed off by a single centered CTA button with an optional line of supporting text underneath.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/feature3"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/feature3"

This installs the block to components/beste/block/feature3.tsx and the shadcn/ui badge and button components it depends on.

Quick start

The installed file exports feature3Demo alongside the block: the exact props behind the preview above. Spread it to get a working service grid in one line.

tsx
import { Feature3, feature3Demo } from "@/components/beste/block/feature3";

export default function Page() {
  return <Feature3 {...feature3Demo} />;
}

Then replace the demo with your own props. Written out, the same setup looks like this:

tsx
import { Globe, Shield, Zap } from "lucide-react";
import { Feature3 } from "@/components/beste/block/feature3";

export default function Page() {
  return (
    <Feature3
      badge={{ label: "Services", variant: "default" }}
      heading="All-in-one web solutions"
      description="A complete suite of tools to build, grow, and optimize your site."
      features={[
        { icon: Zap, title: "Blazing fast websites", description: "Optimized for speed and UX." },
        { icon: Shield, title: "Robust security", description: "Encryption on every touchpoint." },
        { icon: Globe, title: "Global scalability", description: "Cloud infrastructure worldwide." },
      ]}
      button={{ label: "Launch your site", href: "/contact" }}
      bottomText="No upfront costs. Start your free consultation today."
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Badge above the heading
headingstringSection heading
descriptionstringSection intro text
featuresFeatureItem[][]Capability cards in the grid
buttonButtonItemA single centered CTA button below the grid; unlike most feature blocks this is one object, not a buttons array
bottomTextstringLine of supporting text under the button
classNamestringExtra classes for the outer <section>
ts
type FeatureItem = {
  icon?: LucideIcon;
  title: string;
  description: string;
};

type ButtonItem = {
  label: string;
  href?: string;
  variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "destructive";
};

Behavior notes

More Feature blocks

View all Feature
FREE

feature107

Icon-Centered Grid Cards

3-column grid of centered feature cards with large icons and brief descriptions. Perfect for capability highlights, service features, or platform offerings.

PRO

feature160

Centered Icon Cards Grid

4-column grid of feature icons with titles and descriptions below. Perfect for capability highlights, feature icons, or simple feature grid.

FREE

feature5

Compact Two-Column Capabilities

Left-aligned headline followed by a compact two-column grid of capability rows. Each row leads with a Lucide icon.

PRO

feature161

Icon Row Feature Grid

3-column grid of horizontal feature items with icon and text side by side. Clean layout for capability highlights and feature overviews.

PRO

feature241

Icon Capability Grid

A capability section with an eyebrow over a hairline rule, a two-column heading, and a responsive grid of icon-led features with tinted chips, titles, and descriptions.

PRO

feature199

Feature with Side Heading and Icon Grid

Two-column feature section with a large heading on the left and a 2x2 grid of feature cards on the right, each with a large badge icon, title, and description.

Markdown version