'use client'; import { useState } from 'react'; import { motion } from 'framer-motion'; import { useInView } from 'framer-motion'; import { useRef } from 'react'; import { Badge } from '@/components/ui/badge'; import { Button } from '@/components/ui/button'; import { Input } from '@/components/ui/input'; import { Textarea } from '@/components/ui/textarea'; import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card'; import { Mail, Phone, MapPin, Send, Loader2, Clock, MessageCircle, HeadphonesIcon, Sparkles } from 'lucide-react'; import { COMPANY_INFO } from '@/lib/constants'; export function ContactSection() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: '-100px' }); const [isSubmitting, setIsSubmitting] = useState(false); const [isSubmitted, setIsSubmitted] = useState(false); async function handleSubmit(e: React.FormEvent) { e.preventDefault(); setIsSubmitting(true); // Simulate form submission await new Promise(resolve => setTimeout(resolve, 1500)); setIsSubmitting(false); setIsSubmitted(true); } return (
联系我们

与我们取得联系

无论您有任何问题或合作意向,我们都很乐意与您交流

{/* Contact Info */} 我们的承诺

专业响应

工作日 2 小时内快速响应您的咨询

免费咨询

提供免费的业务咨询和方案评估服务

定制方案

根据您的需求量身定制最优解决方案

工作时间
周一至周五 9:00 - 18:00
{/* Contact Form */} 发送消息 {isSubmitted ? (

消息已发送

感谢您的留言,我们会尽快与您联系!

) : (