"use client" import React, { useState } from 'react'; import { motion } from 'framer-motion'; import { Button } from '@/components/ui/button'; import { Card, CardContent } from '@/components/ui/card'; import { Input } from '@/components/ui/input'; import { Textarea } from '@/components/ui/textarea'; import { Send, CheckCircle} from 'lucide-react'; // Contact Form Component const ContactForm: React.FC = () => { const [formData, setFormData] = useState({ name: '', email: '', phone: '', address: '', message: '' }); const [submitted, setSubmitted] = useState(false); const handleSubmit = () => { console.log('Form submitted:', formData); setSubmitted(true); setTimeout(() => setSubmitted(false), 3000); }; const handleChange = (e: React.ChangeEvent) => { setFormData({ ...formData, [e.target.name]: e.target.value }); }; return (

Send us a message

Fill out the form below and we'll get back to you within 24 hours

{submitted ? (

Thank you!

Your message has been sent successfully.

) : (