ti1a commited on
Commit
ab5a73b
Β·
verified Β·
1 Parent(s): 688ae1a

Upload components/CompetitiveAdvantage.jsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/CompetitiveAdvantage.jsx +100 -0
components/CompetitiveAdvantage.jsx ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { CheckCircle, TrendingUp, Award, Lock } from 'lucide-react';
2
+
3
+ const advantages = [
4
+ {
5
+ icon: TrendingUp,
6
+ title: 'Market Leader',
7
+ description: 'Chroma is the fastest-growing open-source vector database with 8k+ GitHub stars and active community support'
8
+ },
9
+ {
10
+ icon: Award,
11
+ title: 'Proven Expertise',
12
+ description: 'Our team has implemented 50+ production Chroma deployments across various industries'
13
+ },
14
+ {
15
+ icon: Lock,
16
+ title: 'Enterprise Security',
17
+ description: 'SOC 2 Type II compliant with end-to-end encryption and role-based access control'
18
+ },
19
+ {
20
+ icon: CheckCircle,
21
+ title: 'Cost Efficient',
22
+ description: 'Reduce vector search costs by up to 70% compared to proprietary alternatives'
23
+ }
24
+ ];
25
+
26
+ export default function CompetitiveAdvantage() {
27
+ return (
28
+ <section id="advantages" className="py-20 bg-white">
29
+ <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
30
+ <div className="text-center mb-16">
31
+ <h2 className="text-3xl sm:text-4xl font-bold text-gray-900 mb-4">
32
+ Why Choose Chroma & Us
33
+ </h2>
34
+ <p className="text-xl text-gray-600 max-w-3xl mx-auto">
35
+ Leverage the power of the leading open-source vector database with our specialized expertise
36
+ </p>
37
+ </div>
38
+ <div className="grid grid-cols-1 md:grid-cols-2 gap-8 mb-16">
39
+ {advantages.map((advantage, index) => (
40
+ <div key={index} className="flex items-start space-x-4">
41
+ <div className="flex-shrink-0">
42
+ <div className="bg-primary-100 rounded-lg p-3">
43
+ <advantage.icon className="w-6 h-6 text-primary-600" />
44
+ </div>
45
+ </div>
46
+ <div>
47
+ <h3 className="text-xl font-semibold text-gray-900 mb-2">{advantage.title}</h3>
48
+ <p className="text-gray-600">{advantage.description}</p>
49
+ </div>
50
+ </div>
51
+ ))}
52
+ </div>
53
+ <div className="bg-primary-50 rounded-lg p-8">
54
+ <div className="text-center mb-8">
55
+ <h3 className="text-2xl font-bold text-gray-900 mb-4">Chroma vs. Competition</h3>
56
+ <p className="text-gray-600">Key differentiators that make Chroma the ideal choice</p>
57
+ </div>
58
+ <div className="overflow-x-auto">
59
+ <table className="w-full bg-white rounded-lg shadow-sm">
60
+ <thead className="bg-primary-600 text-white">
61
+ <tr>
62
+ <th className="px-6 py-3 text-left font-semibold">Feature</th>
63
+ <th className="px-6 py-3 text-center font-semibold">Chroma</th>
64
+ <th className="px-6 py-3 text-center font-semibold">Pinecone</th>
65
+ <th className="px-6 py-3 text-center font-semibold">Weaviate</th>
66
+ </tr>
67
+ </thead>
68
+ <tbody className="divide-y divide-gray-200">
69
+ <tr>
70
+ <td className="px-6 py-4 font-medium">Open Source</td>
71
+ <td className="px-6 py-4 text-center text-green-600 font-semibold">βœ“ Yes</td>
72
+ <td className="px-6 py-4 text-center text-red-600 font-semibold">βœ— No</td>
73
+ <td className="px-6 py-4 text-center text-green-600 font-semibold">βœ“ Yes</td>
74
+ </tr>
75
+ <tr>
76
+ <td className="px-6 py-4 font-medium">Self-Hosted</td>
77
+ <td className="px-6 py-4 text-center text-green-600 font-semibold">βœ“ Yes</td>
78
+ <td className="px-6 py-4 text-center text-red-600 font-semibold">βœ— No</td>
79
+ <td className="px-6 py-4 text-center text-green-600 font-semibold">βœ“ Yes</td>
80
+ </tr>
81
+ <tr>
82
+ <td className="px-6 py-4 font-medium">Cloud Managed</td>
83
+ <td className="px-6 py-4 text-center text-green-600 font-semibold">βœ“ Yes</td>
84
+ <td className="px-6 py-4 text-center text-green-600 font-semibold">βœ“ Yes</td>
85
+ <td className="px-6 py-4 text-center text-green-600 font-semibold">βœ“ Yes</td>
86
+ </tr>
87
+ <tr>
88
+ <td className="px-6 py-4 font-medium">Cost Efficiency</td>
89
+ <td className="px-6 py-4 text-center text-green-600 font-semibold">High</td>
90
+ <td className="px-6 py-4 text-center text-yellow-600 font-semibold">Medium</td>
91
+ <td className="px-6 py-4 text-center text-yellow-600 font-semibold">Medium</td>
92
+ </tr>
93
+ </tbody>
94
+ </table>
95
+ </div>
96
+ </div>
97
+ </div>
98
+ </section>
99
+ );
100
+ }