import React from 'react'; import { motion } from 'framer-motion'; const Features: React.FC = () => { const features = [ { icon: 'verified_user', title: 'Certified Experts', desc: 'Our team holds top-tier certifications from Microsoft, Cisco, and AWS, ensuring you get world-class expertise.', color: 'blue' }, { icon: 'rocket_launch', title: 'Rapid Response', desc: 'Time is money. We guarantee a 15-minute initial response time for critical issues to keep you moving.', color: 'purple' }, { icon: 'handshake', title: 'Dedicated Partnership', desc: "We don't just fix computers; we align IT strategy with your business goals for long-term success.", color: 'emerald' } ]; const getColorClasses = (color: string) => { switch(color) { case 'blue': return 'bg-blue-100 dark:bg-blue-900/30 text-blue-600 dark:text-blue-400'; case 'purple': return 'bg-purple-100 dark:bg-purple-900/30 text-purple-600 dark:text-purple-400'; case 'emerald': return 'bg-emerald-100 dark:bg-emerald-900/30 text-emerald-600 dark:text-emerald-400'; default: return 'bg-gray-100 dark:bg-gray-800 text-gray-600 dark:text-gray-400'; } }; return (
Why Choose Us

Built on trust. Driven by excellence.

{features.map((feature, i) => ( {feature.icon}

{feature.title}

{feature.desc}

))}
); }; export default Features;