Staaarter

Money-Back Guarantee

Two or three pricing tier cards are followed by a bordered guarantee banner featuring a shield icon, a heading, and reassurance copy (e.g. a 30-day money-back guarantee). Useful for reducing signup friction on higher-commitment plans.

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 badge, button dependencies and any missing npm packages, and installs them straight into your project.

npx shadcn add https://staaarter.com/r/money-back-guarantee.json

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

Usage

The file also exports pricing10Demo, 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 { Pricing10, pricing10Demo } from "@/components/blocks/pricing/pricing10";

export default function Page() {
  return <Pricing10 {...pricing10Demo} />;
}

Props

PropTypeDefaultDescription
headingReactNodeundefinedCentered headline above the pricing cards.
descriptionstringundefinedSupporting subtext below the heading.
plansPricingPlan[]nonePricing tier cards (2-3 recommended). Required.
guaranteeHeadingstringnoneHeading inside the guarantee banner, e.g. "30-day money-back guarantee". Required.
guaranteeTextstringnoneSupporting copy inside the guarantee banner. Required.
classNamestringnoneExtra classes for the outer section element.

Types

type PricingPlan = {
  name: string;
  price: string;
  period?: string;
  description?: string;
  features: string[];
  ctaLabel: string;
  ctaHref?: string;
  highlighted?: boolean;
};

Behavior notes

  • This block is fully static: a Server Component with zero event handlers. The guarantee banner is decorative reassurance copy, not a live policy check against any billing system.
  • The ShieldCheck icon is fixed in the component; it is not configurable per-plan or via props.
  • All pricing card CTA buttons are inert placeholders (href defaults to "#" in the demo) with no real navigation or checkout wired up.