import React from 'react'; import { motion, useReducedMotion } from 'framer-motion'; import { MessageCircle } 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 Contact = () => { const shouldReduceMotion = useReducedMotion(); if (shouldReduceMotion) { return ( How can we help? Let's talk Ready to start your next project? Get in touch with our team and let's discuss how we can bring your ideas to life. Schedule a Call Send Message ); } return ( How can we help? Let's talk Ready to start your next project? Get in touch with our team and let's discuss how we can bring your ideas to life. Schedule a Call Send Message ); }; export default Contact;
Ready to start your next project? Get in touch with our team and let's discuss how we can bring your ideas to life.