import React from 'react'; import { motion, useReducedMotion } from 'framer-motion'; import { Check } 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" } }); const AccelerateSection = () => { const shouldReduce = useReducedMotion(); const features = [ "Providing technical guidance & architectural reviews", "Mentoring team members", "Advising best practices", "Addressing security & performance concerns", "Performing in-depth code reviews", "Long-term support (LTS) & upgrade assistance" ]; if (shouldReduce) { return (

Accelerate your development

We work alongside you to meet your deadlines while avoiding costly tech debt. Challenging issue? We've got you covered.

Our goal is to help you get to market faster. Nest core team members will help you utilize best practices and choose the right strategy for unique goals.

    {features.map((feature, index) => (
  • {feature}
  • ))}
); } return (

Accelerate your development

We work alongside you to meet your deadlines while avoiding costly tech debt. Challenging issue? We've got you covered.

Our goal is to help you get to market faster. Nest core team members will help you utilize best practices and choose the right strategy for unique goals.

    {features.map((feature, index) => ( {feature} ))}
); }; export default AccelerateSection;