Staaarter

Logos Below Pricing

Standard pricing cards followed by a social-proof logo strip below. Since no real company logos are available, the strip renders clean bold-text wordmark placeholders instead of image logos.

By Staaarter Team
Pricing
Docs
Live preview

Docs

Installation

A real shadcn registry command, not a copy-paste stand-in: it fetches this block plus its button dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/logos-below-pricing.json

Prefer not to use the CLI? Copy the source from the Code toggle above into src/components/blocks/pricing/pricing16.tsx instead.

Usage

The file also exports pricing16Demo, the exact props behind the preview above. Spread it to get a working section in one line, then replace it with your own data.

import { Pricing16, pricing16Demo } from "@/components/blocks/pricing/pricing16";

export default function Page() {
  return <Pricing16 {...pricing16Demo} />;
}

Props

PropTypeDefaultDescription
headingReactNodenoneMain section headline.
descriptionstringundefinedSupporting subtext below the heading.
tiersPricing16Tier[]noneThe pricing cards to render (2-3 recommended).
logosLabelstring"Trusted by teams at"Small caption above the logo strip.
logosstring[]noneWordmark text for each placeholder logo; the strip only renders when non-empty.
classNamestringnoneExtra classes for the outer section element.

Types

type Pricing16Tier = {
  name: string;
  description?: string;
  price: string;
  period?: string;
  features: string[];
  cta: { label: string; href?: string };
  highlighted?: boolean;
};

Behavior notes

  • The logo strip renders each `logos` entry as plain bold text in a muted color, not an image, since no real company marks were available; swap in real `<img>`/`MediaSlot` logos if this is adapted for production use.
  • This block is fully static presentation with no interactivity.
  • All CTA buttons are inert placeholders (href defaults to "#" in the demo) with no real navigation or checkout wired up.