diff --git a/src/components/sections/pricing/FeatureComparison.tsx b/src/components/sections/pricing/FeatureComparison.tsx index 44b20e5..870438d 100644 --- a/src/components/sections/pricing/FeatureComparison.tsx +++ b/src/components/sections/pricing/FeatureComparison.tsx @@ -1,4 +1,5 @@ -import { CheckCircle } from 'lucide-react'; +import { CheckCircle, Minus } from 'lucide-react'; +import { cn } from '@/lib/utils'; const features = [ { @@ -29,42 +30,65 @@ const features = [ }, ]; +const tiers = [ + { name: 'Startups', href: '#', price: '$99' }, + { name: 'Growing Businesses', href: '#', price: '$499' }, + { name: 'Enterprises', href: '#', price: 'Custom' }, +]; + export default function FeatureComparison() { return ( -
- Choose the right plan for your business. +
+ The right price for you, whoever you are
+ Choose the plan that best fits your needs, from small startups to large enterprises. +
+ + {/* Comparison table */}