Quality Scorecard Grid

Six-card grid displaying quality metrics with icons, progress bars, and numeric scores for performance, security, and reliability. Perfect for system health dashboards or compliance overviews.

FREE

Feature23: Quality Scorecard Grid

Card grid built for status dashboards: each card pairs an icon, a title, and a description with a numeric score and a Progress bar, so a reader can scan health metrics like performance, security, or reliability at a glance. A centered header and an optional footer note with action buttons frame the grid.

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

Base UI flavor

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

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

Quick start

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

tsx
import { Feature23, feature23Demo } from "@/components/beste/block/feature23";

export default function Page() {
  return <Feature23 {...feature23Demo} />;
}

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

tsx
import { Gauge, Shield, Users } from "lucide-react";
import { Feature23 } from "@/components/beste/block/feature23";

export default function Page() {
  return (
    <Feature23
      badge={{ label: "Quality", variant: "secondary" }}
      heading="Make quality visible"
      description="A lightweight scoreboard that turns 'it feels better' into measurable signals."
      areas={[
        {
          id: "area-1",
          icon: <Gauge className="size-5" />,
          title: "Performance",
          description: "Track Core Web Vitals and spot regressions early.",
          score: 92,
          footnote: "Based on last 7 days",
        },
        {
          id: "area-2",
          icon: <Shield className="size-5" />,
          title: "Security posture",
          description: "Surface dependency risk and access anomalies.",
          score: 88,
        },
        {
          id: "area-3",
          icon: <Users className="size-5" />,
          title: "UX clarity",
          description: "Validate copy and accessibility without slowing releases.",
          score: 90,
        },
      ]}
      footerNote="Tip: keep scores directional, use them to spot trends."
      buttons={[{ id: "btn-1", label: "See dashboard sample", href: "/dashboard", variant: "outline" }]}
    />
  );
}

Props

PropTypeDefaultDescription
badge{ label: string; variant?: "default" | "secondary" | "outline" }Badge above the heading
headingstringSection heading
descriptionstringSection intro text
areasArea[][]Scorecards rendered in the grid; the section renders nothing when this is empty
footerNotestringSmall caption shown above the footer buttons
buttonsButtonItem[][]CTA buttons in the footer row
classNamestringExtra classes for the outer <section>
ts
type Area = {
  id: string;
  icon?: React.ReactNode;
  title: string;
  description?: string;
  score: number;
  footnote?: string;
};

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

Behavior notes

More Feature blocks

View all Feature
FREE

feature29

Platform Feature Cards with Metrics

Six-card grid featuring icons, descriptions, and highlighted stats (latency, uptime, user counts) with animated hover effects. Perfect for showcasing SaaS capabilities or enterprise platform features.

PRO

feature115

Dashboard Stats Cards

2-4 column grid of stat cards with large numbers, labels, and percentage change indicators. Perfect for KPI dashboards, performance metrics, or key results display.

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

feature121

Rating Cards with Stars

Responsive grid of feature review cards with star ratings and review counts. Ideal for feature ratings, user reviews, or quality metrics.

FREE

feature3

Service Grid With Icons

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

PRO

feature136

Numbered Steps Grid

Responsive grid of numbered step cards with titles and descriptions. Perfect for process visualization, onboarding steps, or sequential workflows.