import { Button } from "@/components/ui/button" import { Check } from "lucide-react" interface PricingTier { name: string price: string description: string features: string[] actionLabel: string actionHref: string popular?: boolean } interface PricingSectionProps { title: string description?: string tiers: PricingTier[] } export function PricingSection({ title, description, tiers }: PricingSectionProps) { return (

{title}

{description && (

{description}

)}
{tiers.map((tier, index) => (
{tier.popular && (
Popular
)}

{tier.name}

{tier.price} {tier.price !== "Custom" && /month}

{tier.description}

    {tier.features.map((feature, featureIndex) => (
  • {feature}
  • ))}
))}
) }