import React from 'react'; import { motion, useReducedMotion } from 'framer-motion'; import { Mail } 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 to discuss your requirements and get a custom quote.

Feel free to drop us a note:
contact@sargas.io
); } return (

How can we help? Let's talk

Ready to start your next project? Get in touch with our team to discuss your requirements and get a custom quote.

Feel free to drop us a note:
contact@sargas.io
); }; export default Contact;