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" } }); const Hero = () => { const shouldReduce = useReducedMotion(); if (shouldReduce) { return (

Official support

Our Experts become your development partner to eliminate project risk, tackling the most ambitious projects - right by your side.

); } return (
Official support Our Experts become your development partner to eliminate project risk, tackling the most ambitious projects - right by your side.
); }; export default Hero;