import React, { useState } from 'react'; const Contact: React.FC = () => { const [status, setStatus] = useState<'idle' | 'sending' | 'success'>('idle'); const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); setStatus('sending'); setTimeout(() => setStatus('success'), 1500); }; return (
{/* Information Section */}

Get in Touch

Ready to optimize your industrial infrastructure? Our engineering team is standing by to assist with your technical inquiries.

Headquarters

Industrial Hub B123, Gangnam District
Seoul, South Korea

Phone

+82 2-1234-5678

Email

solutions@hanmocontrol.com

{/* Form Section */}
{status === 'success' ? (

Inquiry Received

Thank you for reaching out. An automation consultant will review your request and contact you within 24 hours.

) : (
)}
); }; export default Contact;