import React from 'react'; import { Check } from 'lucide-react'; const PricingOne = () => { const plans = [ { name: 'Starter', price: '$9', period: '/month', features: ['Up to 5 projects', 'Basic support', 'Core components'] }, { name: 'Pro', price: '$29', period: '/month', features: ['Unlimited projects', 'Priority support', 'All components', 'Custom themes'], popular: true }, { name: 'Enterprise', price: '$99', period: '/month', features: ['Unlimited everything', '24/7 support', 'Custom development', 'SLA guarantee'] } ]; return (

Choose Your Plan

Simple, transparent pricing for teams of all sizes.

{plans.map((plan, index) => (
{plan.popular && ( Most Popular )}

{plan.name}

{plan.price} {plan.period}
    {plan.features.map((feature, featureIndex) => (
  • {feature}
  • ))}
))}
); }; export default PricingOne;