Command Palette

Search for a command to run...

Docs
Pricing Two

Pricing Two

A pricing section for your website.

Ultimate Plan

Access everything you need to grow your business.

$99$199
one-time payment

Features:

  • Unlimited Projects
  • Advanced Analytics
  • Team Collaboration
  • Custom Branding

Perks:

  • 24/7 Support
  • Priority Assistance
  • Exclusive Webinars
  • Early Feature Access

Features

Single-card pricing showcase with feature highlights
Animated entrance with progressive reveal of features
Responsive design that adapts to mobile and desktop
Organized features and perks categories

Installation

Run the following command:

Update your imports:
import { PricingTwo } from "@/components/blocks/pricing-two"

Usage

import { PricingTwo } from "@/components/blocks/pricing-two";
 
export default function Home() {
  return (
    <PricingTwo />
  );
}

Props

PropTypeDefaultDescription
classNamestring-Additional CSS classes
pricestring"$99"Price display
originalPricestring"$199"Original price (shown striked)
titlestring"Ultimate Plan"Plan title
descriptionstring-Short plan description
featuresstring[]See belowArray of features
perksstring[]See belowArray of perks
ctaLabelstring"Get Started"Call-to-action button text

Customization

You can customize the pricing block by passing props:
<PricingTwo
  title="Pro Plan"
  price="$49"
  originalPrice="$99"
  description="Everything you need to grow your business"
  features={[
    "Custom Domain",
    "Advanced Analytics",
    "API Access",
    "Team Collaboration"
  ]}
  perks={[
    "Priority Support",
    "Dedicated Account Manager",
    "Training Sessions",
    "Custom Integrations"
  ]}
  ctaLabel="Subscribe Now"
/>