Use Case Image Cards

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.

FREE

Feature63: Use Case Image Cards

Grid of full-bleed photo cards, each a fixed 3:2 tile with a dark scrim and title/description overlaid at the bottom; cards with an href become links and reveal an arrow icon on hover while the photo zooms slightly 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/feature63"

Base UI flavor

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

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

Quick start

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

tsx
import { Feature63, feature63Demo } from "@/components/beste/block/feature63";

export default function Page() {
  return <Feature63 {...feature63Demo} />;
}

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

tsx
import { Feature63 } from "@/components/beste/block/feature63";

export default function Page() {
  return (
    <Feature63
      badge={{ label: "Solutions", variant: "default" }}
      heading="Built for every team"
      description="Explore how different teams use our platform."
      items={[
        {
          title: "Marketing",
          description: "Track campaigns and measure ROI",
          image: {
            src: "https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=600&h=400&fit=crop",
            alt: "Marketing",
          },
          href: "/solutions/marketing",
        },
        {
          title: "Engineering",
          description: "Ship faster with better tools",
          image: {
            src: "https://images.unsplash.com/photo-1517180102446-f3ece451e9d8?w=600&h=400&fit=crop",
            alt: "Engineering",
          },
          href: "/solutions/engineering",
        },
      ]}
      buttons={[{ label: "See all use cases", href: "/solutions" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; icon?: React.ReactNode; variant?: "default" | "secondary" | "outline" }Badge above the heading; unlike most feature blocks in this set, it accepts an optional leading icon
headingstringSection heading
descriptionstringSection intro text
itemsGridItem[][]Photo cards rendered in the grid
buttonsButtonItem[][]CTA buttons below the grid
classNamestringExtra classes for the outer <section>
ts
type GridItem = {
  title: string;
  description?: string;
  image: { src: string; alt: string };
  href?: string;
};

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

Behavior notes

More Feature blocks

View all Feature
PRO

feature185

Image Feature Cards Grid over Media

Three-column image feature cards grid with sticky header over background media and glass-morphism styling

PRO

feature192

Hero Card + Grid Cards over Media

Large hero card with image at top followed by three-column feature card grid over background media

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.

FREE

feature26

Feature Card Grid with Hover Effects

Six-card grid with icons in rounded containers that animate on hover, plus titles and descriptions. Perfect for wellness platforms, health apps, or service benefit showcases.

PRO

feature196

Module Cards Grid With Hover Lift

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.

PRO

feature149

Contact Method Cards

3-column grid of contact option cards with icons, descriptions, and action text. Perfect for contact methods display, support channels, or customer service options.