import { Button } from "@/components/ui/button"; import { CheckCircle } from "lucide-react"; import Link from "next/link"; const pricingTiers = [ { name: "Basic", price: "Free", usage: "60 minutes of usage per month", features: [ "Basic AI characters", "Limited voice interactions" ], popular: false }, { name: "Plus", price: "$10", period: "/month", usage: "60 minutes of usage per day", features: [ "All AI characters", "Enhanced voice quality", "Character customization" ], popular: true, link: "https://buy.stripe.com/14k6or0r00j900geV7", }, { name: "Pro", price: "$30", period: "/month", usage: "Unlimited usage", features: [ "All Plus features", "Advanced AI capabilities", "Priority support" ], popular: false, link: "https://buy.stripe.com/14k28b6Po7LB14k3cq" } ]; export const PricingSection = () => { return (
{pricingTiers.map((tier, index) => (
{tier.name === 'Plus' && (
Most Popular
)} {tier.name === 'Pro' && (
Best Value
)}

{tier.name}

{tier.price}{tier.period || ''}

{tier.usage}

{tier.name === 'Pro' && (
Perfect for serious collectors and enthusiasts
)} {tier.name === 'Basic' ? ( ) : ( )}
))}
) }