import React from 'react'; import { motion, useReducedMotion } from 'framer-motion'; import { Users, Target, Zap, Search, Shield, GraduationCap } from 'lucide-react'; const fadeUpPreset = (delay = 0, duration = 1.2) => ({ initial: { opacity: 0, y: 20 }, whileInView: { opacity: 1, y: 0 }, viewport: { once: true, amount: 0.2 }, transition: { delay, duration, ease: "easeOut" } }); function Services() { const shouldReduce = useReducedMotion(); const services = [ { icon: Users, title: "DEVELOPMENT", description: "Achieve your goals faster with Nest experts on your team tackling challenging issues right by your side." }, { icon: Target, title: "TECHNICAL GUIDANCE", description: "Enable your team to get the most out of the technology. Ensure your solutions are secure and reliable." }, { icon: Zap, title: "MIGRATION ASSISTANCE", description: "We provide a comprehensive migration assistance, ensuring you are using the latest and greatest." }, { icon: Search, title: "IN-DEPTH CODE REVIEWS", description: "Frequent code reviews can eliminate potentially hazardous bugs and issues at an early stage while enforcing best practices." }, { icon: Shield, title: "LONG-TERM SUPPORT (LTS)", description: "Have peace of mind with Nest long-term support (LTS), priority fixes, upgrade assistance, and live troubleshooting." }, { icon: GraduationCap, title: "TEAM TRAININGS", description: "Level-up your team by having expert-led Nest trainings or workshops. Get everyone up-to-speed quickly." } ]; if (shouldReduce) { return (

How can we help you be successful?

Nest Enterprise Consulting includes a broad range of services to empower your team. We help you grow your business even long after our commitment is done.

{services.map((service, index) => { const IconComponent = service.icon; return (

{service.title}

{service.description}

); })}
); } return (

How can we help you be successful?

Nest Enterprise Consulting includes a broad range of services to empower your team. We help you grow your business even long after our commitment is done.

{services.map((service, index) => { const IconComponent = service.icon; return (

{service.title}

{service.description}

); })}
); } export default Services;