import { CheckIcon } from '@heroicons/react/20/solid' const tiers = [ { name: 'Freelancer', id: 'tier-freelancer', href: '#', priceMonthly: '$24', description: 'The essentials to provide your best work for clients.', features: ['5 products', 'Up to 1,000 subscribers', 'Basic analytics', '48-hour support response time'], mostPopular: false, }, { name: 'Startup', id: 'tier-startup', href: '#', priceMonthly: '$32', description: 'A plan that scales with your rapidly growing business.', features: [ '25 products', 'Up to 10,000 subscribers', 'Advanced analytics', '24-hour support response time', 'Marketing automations', ], mostPopular: true, }, { name: 'Enterprise', id: 'tier-enterprise', href: '#', priceMonthly: '$48', description: 'Dedicated support and infrastructure for your company.', features: [ 'Unlimited products', 'Unlimited subscribers', 'Advanced analytics', '1-hour, dedicated support response time', 'Marketing automations', ], mostPopular: false, }, ] function classNames(...classes) { return classes.filter(Boolean).join(' ') } export default function Example() { return (

Pricing

Pricing plans for teams of all sizes

Distinctio et nulla eum soluta et neque labore quibusdam. Saepe et quasi iusto modi velit ut non voluptas in. Explicabo id ut laborum.

{tiers.map((tier, tierIdx) => (

{tier.name}

{tier.mostPopular ? (

Most popular

) : null}

{tier.description}

{tier.priceMonthly} /month

    {tier.features.map((feature) => (
  • ))}
Buy plan
))}
) }