Spaces:
Sleeping
Sleeping
| import { Code, Cloud, Users, Settings, BarChart3, Headphones } from 'lucide-react'; | |
| const services = [ | |
| { | |
| icon: Code, | |
| title: 'Implementation & Integration', | |
| description: 'End-to-end Chroma vector database setup and integration with your existing AI/ML pipeline', | |
| features: ['Custom schema design', 'API integration', 'Data migration', 'Performance tuning'] | |
| }, | |
| { | |
| icon: Cloud, | |
| title: 'Managed Cloud Services', | |
| description: 'Fully managed Chroma instances on AWS, GCP, or Azure with 99.9% uptime SLA', | |
| features: ['Infrastructure management', 'Auto-scaling', 'Backup & recovery', 'Monitoring & alerting'] | |
| }, | |
| { | |
| icon: Users, | |
| title: 'Team Training', | |
| description: 'Comprehensive training programs to upskill your team on Chroma vector database best practices', | |
| features: ['Hands-on workshops', 'Best practices guide', 'Architecture review', 'Ongoing support'] | |
| }, | |
| { | |
| icon: Settings, | |
| title: 'Performance Optimization', | |
| description: 'Deep optimization services to maximize query performance and reduce operational costs', | |
| features: ['Query optimization', 'Index tuning', 'Resource optimization', 'Load testing'] | |
| }, | |
| { | |
| icon: BarChart3, | |
| title: 'Analytics & Monitoring', | |
| description: 'Advanced analytics and monitoring solutions for your vector database operations', | |
| features: ['Custom dashboards', 'Usage analytics', 'Cost analysis', 'Performance metrics'] | |
| }, | |
| { | |
| icon: Headphones, | |
| title: '24/7 Support', | |
| description: 'Round-the-clock expert support for critical production environments', | |
| features: ['Priority response', 'Dedicated team', 'Proactive monitoring', 'Incident management'] | |
| } | |
| ]; | |
| export default function Services() { | |
| return ( | |
| <section id="services" className="py-20 bg-gray-50"> | |
| <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
| <div className="text-center mb-16"> | |
| <h2 className="text-3xl sm:text-4xl font-bold text-gray-900 mb-4"> | |
| Our Chroma Expertise | |
| </h2> | |
| <p className="text-xl text-gray-600 max-w-3xl mx-auto"> | |
| Comprehensive services to accelerate your vector database journey from proof-of-concept to production scale | |
| </p> | |
| </div> | |
| <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| {services.map((service, index) => ( | |
| <div key={index} className="bg-white rounded-lg shadow-lg p-8 hover:shadow-xl transition-shadow"> | |
| <service.icon className="w-12 h-12 text-primary-600 mb-6" /> | |
| <h3 className="text-xl font-semibold text-gray-900 mb-4">{service.title}</h3> | |
| <p className="text-gray-600 mb-6">{service.description}</p> | |
| <ul className="space-y-2"> | |
| {service.features.map((feature, idx) => ( | |
| <li key={idx} className="flex items-start"> | |
| <span className="text-primary-600 mr-2">•</span> | |
| <span className="text-gray-700">{feature}</span> | |
| </li> | |
| ))} | |
| </ul> | |
| </div> | |
| ))} | |
| </div> | |
| </div> | |
| </section> | |
| ); | |
| } |