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.

FREE

UseCase4: Industry Solutions Grid

Card grid built for vertical/industry pitches: each card leads with a wide image, then an icon-plus-title row, a two-line-clamped description, and feature text rendered as small rounded pill tags rather than a checklist.

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

Base UI flavor

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

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

Quick start

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

tsx
import { UseCase4, usecase4Demo } from "@/components/beste/block/usecase4";

export default function Page() {
  return <UseCase4 {...usecase4Demo} />;
}

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

tsx
import { HeartPulse, Landmark } from "lucide-react";
import { UseCase4 } from "@/components/beste/block/usecase4";

export default function Page() {
  return (
    <UseCase4
      badge={{ label: "Industries", variant: "secondary" }}
      heading="Trusted Across Industries"
      description="See how leading companies use our platform to drive growth."
      columns={4}
      items={[
        {
          id: "healthcare",
          icon: <HeartPulse className="size-5" />,
          title: "Healthcare",
          description: "HIPAA-compliant solutions for patient data and telehealth.",
          image: { src: "https://images.unsplash.com/photo-1576091160399-112ba8d25d1d", alt: "Healthcare" },
          features: [{ id: "h1", text: "HIPAA compliant" }],
        },
        {
          id: "fintech",
          icon: <Landmark className="size-5" />,
          title: "Financial Services",
          description: "Secure banking solutions with real-time fraud detection.",
          image: { src: "https://images.unsplash.com/photo-1554224155-6726b3ff858f", alt: "Finance" },
          features: [{ id: "f1", text: "Bank-grade security" }],
        },
      ]}
    />
  );
}

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 | 3 | 43Grid column count at sm/lg
classNamestringExtra classes for the outer <section>
ts
type UseCaseItem = {
  id: string;
  icon?: React.ReactNode;
  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
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.

FREE

usecase2

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.

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.

FREE

usecase5

Feature Icon Grid

Centered icon grid with titles and descriptions, featuring hover animations on icon containers. Perfect for showcasing product features or capabilities in a clean layout.

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

usecase19

Portfolio Masonry Gallery

Pinterest-style masonry grid with variable-height image cards, category labels, and hover zoom effects. Perfect for creative portfolios or work showcases.