import React from 'react'; import { motion } from 'framer-motion'; import { useContactForm } from '../src/hooks/useContactForm'; const Contact: React.FC = () => { const { errorMessage, hasError, isSubmitted, isSubmitting, resetFeedback, submitContactForm } = useContactForm(); return (

Get in Touch

We're here to help you with all your IT needs.

{isSubmitting ? 'Sending...' : 'Send Message'}
{isSubmitted && (

Thanks. Your message was sent successfully.

)} {hasError && (

{errorMessage}

)}
); }; export default Contact;