Files
1988df5d-33a6-4048-ba56-c61…/src/components/TeamAugmentation.js
2026-01-15 11:57:08 +02:00

46 lines
2.0 KiB
JavaScript

import React from 'react';
import { motion, useReducedMotion } from 'framer-motion';
function TeamAugmentation() {
const shouldReduceMotion = useReducedMotion();
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 SectionComponent = shouldReduceMotion ? 'section' : motion.section;
const sectionProps = shouldReduceMotion ? {} : fadeUpPreset(0.1, 1.0);
return (
<SectionComponent {...sectionProps} className="py-16 bg-nest-red relative overflow-hidden">
<div className="absolute inset-0 bg-gradient-to-r from-nest-red to-nest-red-dark opacity-90"></div>
<div className="absolute right-0 top-0 w-1/3 h-full opacity-20">
<div className="w-full h-full bg-gradient-to-l from-black/20 to-transparent"></div>
</div>
<div className="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="grid grid-cols-1 lg:grid-cols-2 gap-12 items-center">
<div className="text-white">
<h2 className="text-3xl md:text-4xl font-bold mb-6">
Team augmentation. By your side at every step
</h2>
<p className="text-lg text-pink-100 mb-8 leading-relaxed">
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.
</p>
<button className="bg-white text-nest-red hover:bg-gray-100 font-medium px-8 py-3 rounded-lg transition-colors duration-200">
Contact us to learn more
</button>
</div>
<div className="relative">
<div className="w-full h-64 bg-gradient-to-br from-pink-500/20 to-purple-600/20 rounded-lg"></div>
</div>
</div>
</div>
</SectionComponent>
);
}
export default TeamAugmentation;