import { pricingPlansPersonal as plans } from '@/config/pricing'; import clsx from 'clsx'; import Icon from '@/components/Icon'; export default function PricingCards() { return (
{plans.map(plan => (
{plan.featured && (
Popular
)}

{plan.name}

$ {plan.price}
per user
per year
Get started
))}
); }