Use Case Card Grid

Responsive grid of use case cards with hover effects, images, descriptions, and feature checklists. Perfect for displaying solutions for different industries or customer segments.

FREE

UseCase2: Use Case Card Grid

Responsive card grid for pitching a product at different audiences: each card pairs a 16:9 hover-zoom image with a title, description, and a checklist of feature bullets. The grid runs two or three columns.

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/usecase2"

Base UI flavor

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

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

Quick start

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

tsx
import { UseCase2, usecase2Demo } from "@/components/beste/block/usecase2";

export default function Page() {
  return <UseCase2 {...usecase2Demo} />;
}

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

tsx
import { UseCase2 } from "@/components/beste/block/usecase2";

export default function Page() {
  return (
    <UseCase2
      badge={{ label: "Solutions", variant: "secondary" }}
      heading="Tailored for Your Needs"
      description="Explore how our platform adapts to different industries."
      columns={2}
      items={[
        {
          id: "startup",
          title: "Startups",
          description: "Launch faster with pre-built templates and scalable infrastructure.",
          image: { src: "https://images.unsplash.com/photo-1497366216548-37526070297c", alt: "Startup workspace" },
          features: [
            { id: "f1", text: "Quick setup in minutes" },
            { id: "f2", text: "Scalable from day one" },
          ],
        },
        {
          id: "enterprise",
          title: "Enterprise",
          description: "Security, compliance, and customization for large organizations.",
          image: { src: "https://images.unsplash.com/photo-1497366811353-6870744d04b2", alt: "Enterprise building" },
          features: [{ id: "f3", text: "SOC 2 compliant" }],
        },
      ]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Pill shown above the heading; omitted when badge.label is falsy
headingstringSection heading
descriptionstringSection intro text
itemsUseCaseItem[]Cards rendered in the grid
columns2 | 33Grid column count at md/lg
classNamestringExtra classes for the outer <section>
ts
type UseCaseItem = {
  id: string;
  title: string;
  description: string;
  image?: { src: string; alt: string };
  features?: UseCaseFeature[];
};

type UseCaseFeature = { id: string; text: string };

Behavior notes

More Use Case blocks

View all Use Case
FREE

usecase4

Industry Solutions Grid

Card grid showcasing industry-specific solutions with icons, images, descriptions, and feature tags. Perfect for highlighting how your platform serves different verticals.

PRO

usecase37

Detailed Feature Cards

Two-column grid of feature cards with icons, extended descriptions, and bullet point highlights. Perfect for comprehensive product feature or capability explanations.

PRO

usecase17

Hover Reveal Cards

Card grid with background images that reveals detailed content on hover via smooth slide-up animation. Perfect for destination showcases or visual feature galleries.

PRO

usecase41

Role Use Case Cards

A use-case section with an eyebrow over a hairline rule, a two-column heading, and three bordered role cards with an icon chip, a monospace role label, a title, a description, and an arrow link.

PRO

usecase18

Industry Stats Cards

Card grid showcasing industries with icons, descriptions, and key statistics like company count and user numbers. Perfect for demonstrating market reach across verticals.

PRO

usecase1

Interactive Tab Showcase

Tab-based use case section with images, descriptions, and feature checklists that collapse to accordion on mobile. Perfect for showcasing how different teams or departments use your product.