import { CheckIcon } from '@heroicons/react/20/solid' const tiers = [ { name: 'Personal', id: 'tier-personal', href: '#', priceMonthly: '$39', description: "The perfect plan if you're just getting started with our product.", features: [ '25 products', 'Up to 10,000 subscribers', 'Audience segmentation', 'Advanced analytics', 'Email support', 'Marketing automations', ], featured: true, }, { name: 'Team', id: 'tier-team', href: '#', priceMonthly: '$99', description: 'A plan that scales with your rapidly growing business.', features: ['Priority support', 'Single sign-on', 'Enterprise integrations', 'Custom reporting tools'], featured: false, }, ] function classNames(...classes) { return classes.filter(Boolean).join(' ') } export default function Example() { return (
) }