Lambchop
Marketing

PricingCard

Pricing tier card with feature list, badge, and CTA button.

import { PricingCard } from "lambchop";

Live Demo

Starter

$29/mo
Perfect for small publishers.
  • Up to 3 sites
  • Basic analytics
  • Email support

Pro

Most Popular
$99/mo
Scale your publishing network.
  • Unlimited sites
  • Advanced analytics
  • Priority support
  • Real-time dashboards

Enterprise

Custom
  • Custom integrations
  • Dedicated account manager
  • SLA guarantee

Usage

import { PricingCard } from "lambchop";

<PricingCard
  name="Pro"
  price="$99"
  featured
  badge="Most Popular"
  description="Everything you need to scale."
  features={["Unlimited sites", "Advanced analytics", "Priority support"]}
/>

Props

PropTypeDefaultDescription
namestringTier name
pricestringDisplay price
unitstring"/mo"Price unit suffix
descriptionstringDescription in highlighted box
featuresstring[]Feature list with star bullets
ctaLabelstring"Get Started"CTA button text
ctaHrefstringOptional link for CTA
onCtaClick() => voidClick handler for CTA
featuredbooleanfalseInverted featured styling
badgestringOptional badge text
classNamestringAdditional CSS classes

Composition

Internally composes Button and Badge components.