import { CheckCircle, TrendingUp, Award, Lock } from 'lucide-react'; const advantages = [ { icon: TrendingUp, title: 'Market Leader', description: 'Chroma is the fastest-growing open-source vector database with 8k+ GitHub stars and active community support' }, { icon: Award, title: 'Proven Expertise', description: 'Our team has implemented 50+ production Chroma deployments across various industries' }, { icon: Lock, title: 'Enterprise Security', description: 'SOC 2 Type II compliant with end-to-end encryption and role-based access control' }, { icon: CheckCircle, title: 'Cost Efficient', description: 'Reduce vector search costs by up to 70% compared to proprietary alternatives' } ]; export default function CompetitiveAdvantage() { return (

Why Choose Chroma & Us

Leverage the power of the leading open-source vector database with our specialized expertise

{advantages.map((advantage, index) => (

{advantage.title}

{advantage.description}

))}

Chroma vs. Competition

Key differentiators that make Chroma the ideal choice

Feature Chroma Pinecone Weaviate
Open Source ✓ Yes ✗ No ✓ Yes
Self-Hosted ✓ Yes ✗ No ✓ Yes
Cloud Managed ✓ Yes ✓ Yes ✓ Yes
Cost Efficiency High Medium Medium
); }