290 lines
17 KiB
TypeScript
290 lines
17 KiB
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import Navigation from '../../../components/Navigation';
|
|
import Footer from '../../../components/Footer';
|
|
import { useLanguage } from '../../../hooks/useLanguage';
|
|
|
|
interface ContactPageProps {
|
|
params: {
|
|
lang: string;
|
|
};
|
|
}
|
|
|
|
export default function ContactPage({ params }: ContactPageProps) {
|
|
const { currentLang, setCurrentLang, currentContent, createLocalizedPath } = useLanguage(
|
|
params.lang,
|
|
);
|
|
const [formData, setFormData] = useState({
|
|
name: '',
|
|
email: '',
|
|
company: '',
|
|
phone: '',
|
|
message: '',
|
|
});
|
|
|
|
const handleInputChange = (e: React.ChangeEvent<HTMLInputElement | HTMLTextAreaElement>) => {
|
|
const { name, value } = e.target;
|
|
setFormData((prev) => ({
|
|
...prev,
|
|
[name]: value,
|
|
}));
|
|
};
|
|
|
|
const handleSubmit = (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
console.log('Form submitted:', formData);
|
|
alert('感谢您的留言,我们会尽快与您联系!');
|
|
setFormData({
|
|
name: '',
|
|
email: '',
|
|
company: '',
|
|
phone: '',
|
|
message: '',
|
|
});
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen bg-gray-900 text-white">
|
|
<Navigation
|
|
currentLang={currentLang}
|
|
setCurrentLang={setCurrentLang}
|
|
content={currentContent}
|
|
createLocalizedPath={createLocalizedPath}
|
|
/>
|
|
|
|
{/* Hero Section */}
|
|
<section className="relative z-10 px-6 py-20">
|
|
<div className="max-w-7xl mx-auto text-center">
|
|
<h1 className="text-4xl md:text-6xl font-bold mb-8 bg-gradient-to-r from-cyan-400 to-blue-500 bg-clip-text text-transparent">
|
|
{currentContent.contact.title}
|
|
</h1>
|
|
<p className="text-xl text-gray-300 mb-12 max-w-3xl mx-auto">
|
|
{currentContent.contact.subtitle}
|
|
</p>
|
|
</div>
|
|
</section>
|
|
|
|
{/* Contact Content */}
|
|
<section className="relative z-10 px-6 py-20">
|
|
<div className="max-w-7xl mx-auto">
|
|
<div className="grid lg:grid-cols-2 gap-12">
|
|
{/* Contact Form */}
|
|
<div className="bg-gray-800/50 backdrop-blur-sm rounded-xl p-8 border border-cyan-500/20">
|
|
<h2 className="text-2xl font-bold mb-6 text-cyan-400">发送消息</h2>
|
|
<form onSubmit={handleSubmit} className="space-y-6">
|
|
<div className="grid md:grid-cols-2 gap-6">
|
|
<div>
|
|
<label className="block text-sm font-medium mb-2 text-gray-300">
|
|
{currentContent.contact.form.name}
|
|
</label>
|
|
<input
|
|
type="text"
|
|
name="name"
|
|
value={formData.name}
|
|
onChange={handleInputChange}
|
|
placeholder={
|
|
currentContent.contact.form.namePlaceholder
|
|
}
|
|
className="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:border-cyan-400 transition-colors"
|
|
required
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label className="block text-sm font-medium mb-2 text-gray-300">
|
|
{currentContent.contact.form.email}
|
|
</label>
|
|
<input
|
|
type="email"
|
|
name="email"
|
|
value={formData.email}
|
|
onChange={handleInputChange}
|
|
placeholder={
|
|
currentContent.contact.form.emailPlaceholder
|
|
}
|
|
className="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:border-cyan-400 transition-colors"
|
|
required
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div className="grid md:grid-cols-2 gap-6">
|
|
<div>
|
|
<label className="block text-sm font-medium mb-2 text-gray-300">
|
|
{currentContent.contact.form.company}
|
|
</label>
|
|
<input
|
|
type="text"
|
|
name="company"
|
|
value={formData.company}
|
|
onChange={handleInputChange}
|
|
placeholder={
|
|
currentContent.contact.form.companyPlaceholder
|
|
}
|
|
className="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:border-cyan-400 transition-colors"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label className="block text-sm font-medium mb-2 text-gray-300">
|
|
{currentContent.contact.form.phone}
|
|
</label>
|
|
<input
|
|
type="tel"
|
|
name="phone"
|
|
value={formData.phone}
|
|
onChange={handleInputChange}
|
|
placeholder={
|
|
currentContent.contact.form.phonePlaceholder
|
|
}
|
|
className="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:border-cyan-400 transition-colors"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div>
|
|
<label className="block text-sm font-medium mb-2 text-gray-300">
|
|
{currentContent.contact.form.message}
|
|
</label>
|
|
<textarea
|
|
name="message"
|
|
value={formData.message}
|
|
onChange={handleInputChange}
|
|
placeholder={currentContent.contact.form.messagePlaceholder}
|
|
rows={6}
|
|
className="w-full px-4 py-3 bg-gray-700 border border-gray-600 rounded-lg focus:outline-none focus:border-cyan-400 transition-colors resize-none"
|
|
required
|
|
/>
|
|
</div>
|
|
<button
|
|
type="submit"
|
|
className="w-full py-4 bg-gradient-to-r from-cyan-500 to-blue-600 rounded-lg font-semibold hover:from-cyan-400 hover:to-blue-500 transition-all duration-300 transform hover:scale-105"
|
|
>
|
|
{currentContent.contact.form.submit}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
{/* Contact Info */}
|
|
<div className="space-y-8">
|
|
<div className="bg-gray-800/50 backdrop-blur-sm rounded-xl p-8 border border-cyan-500/20">
|
|
<h2 className="text-2xl font-bold mb-6 text-cyan-400">联系信息</h2>
|
|
<div className="space-y-6">
|
|
<div className="flex items-start space-x-4">
|
|
<div className="w-12 h-12 bg-gradient-to-r from-cyan-400 to-blue-500 rounded-lg flex items-center justify-center flex-shrink-0">
|
|
<svg
|
|
className="w-6 h-6 text-white"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"
|
|
/>
|
|
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
<div>
|
|
<h3 className="font-semibold text-white mb-1">地址</h3>
|
|
<p className="text-gray-400">
|
|
{currentContent.contact.info.address}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-start space-x-4">
|
|
<div className="w-12 h-12 bg-gradient-to-r from-cyan-400 to-blue-500 rounded-lg flex items-center justify-center flex-shrink-0">
|
|
<svg
|
|
className="w-6 h-6 text-white"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
<div>
|
|
<h3 className="font-semibold text-white mb-1">电话</h3>
|
|
<p className="text-gray-400">
|
|
{currentContent.contact.info.phone}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-start space-x-4">
|
|
<div className="w-12 h-12 bg-gradient-to-r from-cyan-400 to-blue-500 rounded-lg flex items-center justify-center flex-shrink-0">
|
|
<svg
|
|
className="w-6 h-6 text-white"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
<div>
|
|
<h3 className="font-semibold text-white mb-1">邮箱</h3>
|
|
<p className="text-gray-400">
|
|
{currentContent.contact.info.email}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div className="flex items-start space-x-4">
|
|
<div className="w-12 h-12 bg-gradient-to-r from-cyan-400 to-blue-500 rounded-lg flex items-center justify-center flex-shrink-0">
|
|
<svg
|
|
className="w-6 h-6 text-white"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
viewBox="0 0 24 24"
|
|
>
|
|
<path
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth={2}
|
|
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
/>
|
|
</svg>
|
|
</div>
|
|
<div>
|
|
<h3 className="font-semibold text-white mb-1">
|
|
服务时间
|
|
</h3>
|
|
<p className="text-gray-400">
|
|
{currentContent.contact.info.hours}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{/* Map placeholder */}
|
|
<div className="bg-gray-800/50 backdrop-blur-sm rounded-xl p-8 border border-cyan-500/20">
|
|
<h3 className="text-xl font-bold mb-4 text-cyan-400">位置地图</h3>
|
|
<div className="w-full h-64 bg-gray-700 rounded-lg flex items-center justify-center">
|
|
<p className="text-gray-400">地图位置</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<Footer content={currentContent} createLocalizedPath={createLocalizedPath} />
|
|
</div>
|
|
);
|
|
}
|