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 ( -
-
-
-

- Compare plans -

-

- Choose the right plan for your business. +

+
+
+

Pricing

+

+ The right price for you, whoever you are

+

+ Choose the plan that best fits your needs, from small startups to large enterprises. +

+ + {/* Comparison table */}
-
-
Features
-
Startups
-
Growing Businesses
-
Enterprises
+
+ {tiers.map((tier, index) => ( +
+

{tier.name}

+
+ ))}
- {features.map((category) => ( -
-

{category.category}

-
- {category.items.map((item) => ( -
-
{item.name}
- {item.tiers.map((included, i) => ( -
- {included ? :
} + +
+ {features.map((category) => ( +
+

{category.category}

+
+
-
- ))} + ))} +