import { Cloud, Shield, Cpu, Database, Server, Settings } from 'lucide-react'; import { ImageWithFallback } from './figma/ImageWithFallback'; const services = [ { icon: Cloud, title: 'Облачные решения', description: 'Миграция и управление инфраструктурой на базе Яндекс.Облако и VK Cloud', gradient: 'from-blue-50 to-cyan-50', iconBg: 'bg-white', iconColor: 'text-blue-600' }, { icon: Shield, title: 'Кибербезопасность', description: 'Комплексная защита периметра и данных с решениями Kaspersky', gradient: 'from-violet-50 to-purple-50', iconBg: 'bg-white', iconColor: 'text-violet-600' }, { icon: Cpu, title: 'Цифровая трансформация', description: 'Автоматизация процессов на платформах 1С и Галактика', gradient: 'from-emerald-50 to-teal-50', iconBg: 'bg-white', iconColor: 'text-emerald-600' }, { icon: Database, title: 'Управление данными', description: 'Развертывание и поддержка СУБД Postgres Pro', gradient: 'from-orange-50 to-amber-50', iconBg: 'bg-white', iconColor: 'text-orange-600' }, { icon: Server, title: 'Серверная инфраструктура', description: 'Поставка и настройка оборудования Kraftway', gradient: 'from-pink-50 to-rose-50', iconBg: 'bg-white', iconColor: 'text-pink-600' }, { icon: Settings, title: 'Системная интеграция', description: 'Построение корпоративной ИТ-архитектуры на Astra Linux', gradient: 'from-indigo-50 to-blue-50', iconBg: 'bg-white', iconColor: 'text-indigo-600' } ]; export function Services() { return (

Услуги

Комплексные IT-решения для вашего бизнеса

Полный цикл: от стратегии до технической поддержки

{services.map((service, index) => { const Icon = service.icon; const floatClasses = [ 'animate-float', 'animate-float-delay-1', 'animate-float-delay-2', 'animate-float-delay-3', 'animate-float-delay-4', 'animate-float-delay-5' ]; const floatClass = floatClasses[index % 6]; return (

{service.title}

{service.description}

); })}
); }