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 Features = () => { 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 Nest core team got you covered! Nest core team members will help you define best practices and choose the right strategy for your goals.

Contact us to learn more
{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 Nest core team got you covered! Nest core team members will help you define best practices and choose the right strategy for your goals.

Contact us to learn more
{features.map((feature, index) => ( {feature} ))}
); }; export default Features;