Vertical pricing tier display.
npx chaos add tower-pricingimport { TowerPricing } from '@/components/chaos/layout/tower-pricing';
const tiers = [
{ name: 'Basic', price: 9, features: ['Feature 1', 'Feature 2'] },
{ name: 'Pro', price: 19, features: ['All Basic', 'Feature 3'], featured: true },
{ name: 'Ultra', price: 49, features: ['All Pro', 'Feature 4'] },
];
<TowerPricing tiers={tiers} />