Logo
  • Documentation
  • Components
  • New Component Request
GitHub
GitHub
    Treon Studio
    Discord
    Twitter

    Welcome

    Introduction
    Components
    Contributors
    Installation
    Roadmap
    Status - Beta

    Components

    Author TooltipCalendar Event CardCode BlockComponent Preview TooltipChat ComposerEmail Compose CardFile DropzoneFile PreviewGitHub Stars ButtonGoal CardHolo CardKnowledge GraphLink PreviewiOS Message BubblesModel SelectorNavbar MenuNested MenuNotification CardPricing CardRaised ButtonSearch Results TabsSlash Command DropdownTodo ItemTwitter CardWeather CardWorkflow Card

    Form Inputs

    Async Select
    Button
    Button Group
    Checkbox
    Color Picker
    Combobox
    Hierarchical Select
    Input
    Input Base
    Input O T P
    Mask Input
    Multi Select
    Number Input
    Radio Card Group
    Radio Group
    Range Slider
    Search Input
    Segmented Button
    Select
    Slider
    Switch
    Tag Input
    Textarea
    Voice Input

    Layout

    Aspect Ratio
    Card
    Card Icons
    Card Input
    Collapsible
    Divider
    Grid
    Island
    Panel
    Portal
    Resizable
    Scroll Area
    Scroll Shadow
    Separator
    Spacer
    Visually Hidden
    Visually Hidden Input

    Navigation

    Breadcrumb
    Context Menu
    Dropdown Menu
    Menu
    Navbar
    Pagination
    Sidebar
    Steps
    Tab Navigation
    Tabs

    Feedback

    Alert
    Banner
    Callout
    Circular Progress
    Empty State
    Error Message
    Error Page
    Loader Inline
    Loader Screen
    Progress
    Progress Bar
    Skeleton
    Spinner
    Status Dot
    Toast
    Toaster
    Tooltip
    Top Banner
    Tour

    Data Display

    Advanced Table
    Badge
    Badge Overflow
    Data Table
    Description List
    Listbox
    Table
    Tag
    Timeline
    Tree
    Virtualized

    Overlays

    Alert Dialog
    Dialog
    Dialog Stack
    Drawer
    Hover Card
    Popover

    Charts

    Area Chart
    Bar Chart
    Bar List
    Category Bar
    Combo Chart
    Comparison
    Conditional Bar Chart
    Contribution Graph
    Radar Chart

    Calendars

    Attendance Calendar
    Calendar
    Date Picker
    Date Time Field
    Full Calendar
    Gantt
    Mini Calendar
    Schedule
    Schedule Grid
    Time Field

    Typography

    Code
    Code Block
    Control Help
    Control Label
    Field
    Heading
    Kbd
    Label
    Link
    Markdown
    Rich Text Editor
    Snippet
    Text

    Media

    Avatar
    Avatar Group
    Deck
    Document Preview
    File List
    File Upload
    Glimpse
    Image
    Image Crop
    Image Zoom
    Photo Gallery
    Profile Picture
    Q R Code
    Q R Scanner

    User

    Discussion
    Rating
    Testimonial
    User
    User Card

    Interactive

    Accordion
    Action Bar
    Command
    Copy Button
    Cursor
    Emoji Picker
    Fade
    Inline Edit
    Kanban
    Marquee
    Orbit
    Ripple
    Sortable

    Specialized

    App Header
    Bulk Grade Input
    Credit Card
    Footer
    Level Picker
    Notification Card
    Password Strength
    Payment Method
    Pricing Table
    Sandbox
    Stat Card
    Ticker
    Usage Card
    Wizard
    DocsComponents

    Pricing Card

    A beautiful glassmorphism pricing card component with nested card design, feature lists, and customizable accent colors.

    Made with ❤️ byTreon Studio.Source code available onGitHub

    On This Page

    • Usage in Gaia
    • Features
    • Installation
    • Usage
    • Examples
    • Free Tier
    • Pro Tier with Yearly Discount
    • Current Plan State
    • Props
    • Feature Objects
    Website screenshot
    Meet Bungas
    Your open-source, proactive personal AI assistant with 200+ integrations. Bungas combines todos, goals, calendar, and email into one system, turns tasks into automated workflows, and completes work instead of just tracking it. Open-source and self-hostable with support for custom automations and multi-step workflows.

    Pricing Card

    A premium pricing card component with a modern glassmorphism design. Features a nested card layout with price display, feature list, and customizable call-to-action button.

    Free

    Perfect for getting started and exploring the basics.

    $0
    5 conversations per day
    Basic AI responses
    Email support
    Community access
    Pro

    For power users who want the full experience.

    $12$9
    / per year
    Unlimited conversations
    Priority AI responses
    All integrations
    Priority support
    Custom workflows
    Advanced analytics

    Usage in Gaia

    Conversion central. Clear, tiered value props for our subscription plans.

    Features

    Installation

    npx shadcn@latest add "https://ui.treonstudio.io/r/pricing-card"

    Usage

    import { PricingCard } from "@/components/ui/pricing-card";
     
    export default function Example() {
      return (
        <PricingCard
          title="Pro"
          price={9.99}
          description="Everything you need to be productive."
          features={[
            "Unlimited conversations",
            "Priority support",
            "Custom integrations",
          ]}
          onButtonClick={() => console.log("Selected!")}
        />
      );
    }

    Examples

    Free Tier

    <PricingCard
      title="Free"
      price={0}
      description="Get started for free."
      features={["5 conversations per day", "Basic AI", "Community support"]}
      buttonLabel="Get Started"
    />

    Pro Tier with Yearly Discount

    <PricingCard
      title="Pro"
      price={9}
      originalPrice={12}
      isMonthly={false}
      description="Best value for power users."
      features={["Unlimited everything", "Priority support", "All integrations"]}
      accentColor="#00bbff"
    />

    Current Plan State

    <PricingCard
      title="Pro"
      price={12}
      isCurrentPlan={true}
      features={["All Pro features"]}
    />

    Props

    PropTypeDefaultDescription
    titlestring-Plan title (e.g., "Free", "Pro")
    pricenumber-Price amount
    currencystring"$"Currency symbol
    originalPricenumber-Original price (shows strikethrough)
    descriptionstring-Plan description/subtitle
    features(string | PricingFeature)[]-List of included features
    featuresTitleReactNode-Custom title above features
    isMonthlybooleantrueBilling period display
    isCurrentPlanbooleanfalseShows "Current Plan" badge
    buttonLabelstringAutoCustom button label
    onButtonClick() => void-Button click handler
    isDisabledbooleanfalseDisable the button
    isLoadingbooleanfalseShow loading state
    accentColorstring"#3b82f6"Button accent color
    classNamestring-Additional CSS classes

    Feature Objects

    Features can be strings or objects with custom icons:

    const features = [
      "Simple string feature",
      {
        text: "Feature with custom icon",
        icon: <CustomIcon className="h-4 w-4" />,
      },
    ];