import React from 'react'; import { motion, useReducedMotion } from 'framer-motion'; 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 TeamAugmentation() { const shouldReduce = useReducedMotion(); if (shouldReduce) { return (
Cat in chair

Team augmentation. By your side at every step

Nest core team members can work directly with your team on a daily basis to help take your project to the next-level. Let us partner with you and your team to develop the most ambitious projects.

); } return (
Cat in chair

Team augmentation. By your side at every step

Nest core team members can work directly with your team on a daily basis to help take your project to the next-level. Let us partner with you and your team to develop the most ambitious projects.

); } export default TeamAugmentation;