"use client" import type React from "react" import { useState } from "react" import { Card, CardContent } from "@/components/ui/card" import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" import { Textarea } from "@/components/ui/textarea" import { Mail, Phone, MapPin, Clock, Send, CheckCircle, Instagram, Twitter, Linkedin, Camera, Users, Heart, Star, MessageCircle, } from "lucide-react" export function ContactView() { const [formData, setFormData] = useState({ name: "", email: "", phone: "", service: "", message: "", }) const [isSubmitting, setIsSubmitting] = useState(false) const [isSubmitted, setIsSubmitted] = useState(false) const handleInputChange = (e: React.ChangeEvent) => { const { name, value } = e.target setFormData((prev) => ({ ...prev, [name]: value })) } const handleSubmit = async (e: React.FormEvent) => { e.preventDefault() setIsSubmitting(true) // Simulate form submission await new Promise((resolve) => setTimeout(resolve, 2000)) setIsSubmitting(false) setIsSubmitted(true) // Reset form after 3 seconds setTimeout(() => { setIsSubmitted(false) setFormData({ name: "", email: "", phone: "", service: "", message: "", }) }, 3000) } const services = [ { title: "人像摄影", description: "个人写真、情侣照、家庭照", price: "¥800-2000/次", icon: Users, features: ["专业化妆", "多套服装", "精修10张", "原片全送"], }, { title: "婚礼摄影", description: "婚礼全程跟拍记录", price: "¥3000-8000/天", icon: Heart, features: ["双机位拍摄", "全天跟拍", "精修50张", "婚礼相册"], }, { title: "商业摄影", description: "产品拍摄、企业宣传", price: "¥1500-5000/次", icon: Camera, features: ["产品精修", "多角度拍摄", "商用授权", "快速交付"], }, { title: "活动摄影", description: "会议、庆典、聚会拍摄", price: "¥1000-3000/次", icon: Star, features: ["现场抓拍", "关键时刻", "快速出片", "团队合影"], }, ] const contactInfo = [ { icon: Mail, label: "邮箱", value: "zhang.minghua@email.com", link: "mailto:zhang.minghua@email.com", }, { icon: Phone, label: "电话", value: "+86 138 0000 0000", link: "tel:+8613800000000", }, { icon: MapPin, label: "地址", value: "北京市朝阳区798艺术区", link: "https://maps.google.com", }, { icon: Clock, label: "工作时间", value: "周一至周日 9:00-21:00", link: null, }, ] const socialLinks = [ { icon: Instagram, label: "Instagram", link: "https://instagram.com" }, { icon: Twitter, label: "微博", link: "https://weibo.com" }, { icon: Linkedin, label: "LinkedIn", link: "https://linkedin.com" }, ] const workflowSteps = [ { step: "01", title: "初步沟通", description: "了解您的需求和想法,确定拍摄风格和时间", }, { step: "02", title: "方案制定", description: "制定详细的拍摄方案,包括地点、服装、道具等", }, { step: "03", title: "正式拍摄", description: "按照方案进行专业拍摄,确保每个细节完美", }, { step: "04", title: "后期制作", description: "精心后期处理,呈现最佳视觉效果", }, { step: "05", title: "作品交付", description: "按时交付高质量的最终作品", }, ] return (
{/* Hero Section */}

联系合作

期待与您合作,共同创造独特而珍贵的视觉记忆

{/* Contact Form and Info */}
{/* Contact Form */}

发送消息

{!isSubmitted ? (