190 lines
8.0 KiB
TypeScript
190 lines
8.0 KiB
TypeScript
"use client";
|
||
|
||
import { useState } from "react";
|
||
import Link from "next/link";
|
||
|
||
const avatarPhotos = [
|
||
"https://i.pravatar.cc/150?img=32",
|
||
"https://i.pravatar.cc/150?img=33",
|
||
"https://i.pravatar.cc/150?img=25",
|
||
"https://i.pravatar.cc/150?img=52",
|
||
"https://i.pravatar.cc/150?img=44",
|
||
"https://i.pravatar.cc/150?img=55",
|
||
"https://i.pravatar.cc/150?img=47",
|
||
"https://i.pravatar.cc/150?img=57",
|
||
"https://i.pravatar.cc/150?img=48",
|
||
"https://i.pravatar.cc/150?img=59",
|
||
"https://i.pravatar.cc/150?img=49",
|
||
];
|
||
|
||
const features = [
|
||
{ icon: "🍹", text: "每年在 30+ 城市参加线下聚会" },
|
||
{ icon: "❤️", text: "结识新朋友,约会交友" },
|
||
{ icon: "🧪", text: "研究目的地,找到最适合居住和工作的地方" },
|
||
{ icon: "🌎", text: "追踪你的旅行,记录你去过的地方" },
|
||
{ icon: "💬", text: "加入社群聊天,在旅途中找到你的归属" },
|
||
];
|
||
|
||
export default function HeroSection() {
|
||
const [email, setEmail] = useState("");
|
||
|
||
const handleJoin = (e: React.FormEvent) => {
|
||
e.preventDefault();
|
||
if (email.trim()) {
|
||
alert(`欢迎加入游牧中国!我们将发送确认邮件到 ${email}`);
|
||
}
|
||
};
|
||
|
||
return (
|
||
<section className="relative overflow-hidden">
|
||
<div className="absolute inset-0 bg-gradient-to-b from-orange-50/70 via-white to-[#fafafa]" />
|
||
<div
|
||
className="absolute top-0 right-0 w-[500px] h-[500px] -translate-y-1/3 translate-x-1/4 opacity-40 rounded-full"
|
||
style={{
|
||
background:
|
||
"radial-gradient(circle, rgba(249,115,22,0.25) 0%, transparent 70%)",
|
||
}}
|
||
/>
|
||
<div
|
||
className="absolute bottom-0 left-0 w-[350px] h-[350px] translate-y-1/3 -translate-x-1/4 opacity-30 rounded-full"
|
||
style={{
|
||
background:
|
||
"radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%)",
|
||
}}
|
||
/>
|
||
|
||
<div className="relative max-w-[1400px] mx-auto px-5 sm:px-10 py-10 sm:py-14 md:py-20">
|
||
<div className="flex flex-col lg:flex-row lg:items-start lg:gap-10 xl:gap-16">
|
||
{/* Left Column */}
|
||
<div className="flex-1 min-w-0">
|
||
<span className="inline-flex items-center gap-1.5 text-xs font-semibold text-orange-700 bg-orange-100 px-3 py-1.5 rounded-full mb-5">
|
||
🏆 中国数字游民社区 · 始于 2024
|
||
</span>
|
||
|
||
<h1 className="text-3xl sm:text-4xl md:text-5xl lg:text-6xl font-bold tracking-tight leading-tight mb-5">
|
||
<span className="hero-gradient-text">探索中国</span>
|
||
<br />
|
||
<span className="text-gray-900">远程工作,自由生活</span>
|
||
</h1>
|
||
|
||
<p className="text-base sm:text-lg text-gray-500 max-w-2xl mb-7 leading-relaxed">
|
||
加入全球华人数字游民社区,发现中国最适合远程工作和生活的城市,
|
||
从大理到成都,从深圳到杭州,开启你的游牧人生
|
||
</p>
|
||
|
||
<div className="space-y-2.5 mb-8">
|
||
{features.map((f) => (
|
||
<div key={f.text} className="flex items-start gap-2.5">
|
||
<span className="text-base sm:text-lg shrink-0 mt-0.5">
|
||
{f.icon}
|
||
</span>
|
||
<span className="text-sm sm:text-base text-gray-600 underline decoration-gray-300 underline-offset-2">
|
||
{f.text}
|
||
</span>
|
||
</div>
|
||
))}
|
||
</div>
|
||
|
||
<div className="flex items-center gap-3 mb-8">
|
||
<div className="flex -space-x-2">
|
||
{avatarPhotos.slice(0, 8).map((src, i) => (
|
||
<img
|
||
key={i}
|
||
src={src}
|
||
alt=""
|
||
className="w-8 h-8 rounded-full border-2 border-white shadow-sm object-cover"
|
||
/>
|
||
))}
|
||
</div>
|
||
<span className="text-sm text-gray-500">
|
||
<strong className="text-gray-900">5,000+</strong> 成员已加入
|
||
</span>
|
||
</div>
|
||
|
||
<div className="pt-7 border-t border-gray-100">
|
||
<p className="text-xs text-gray-400 uppercase tracking-wider mb-3">
|
||
媒体报道
|
||
</p>
|
||
<div className="flex flex-wrap items-center gap-x-8 gap-y-2">
|
||
{["36氪", "少数派", "极客公园", "虎嗅", "创业邦", "澎湃新闻"].map(
|
||
(name) => (
|
||
<span
|
||
key={name}
|
||
className="text-sm font-semibold text-gray-300 hover:text-gray-400 transition-colors cursor-default"
|
||
>
|
||
{name}
|
||
</span>
|
||
),
|
||
)}
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
{/* Right Column: Video + Email */}
|
||
<div className="lg:w-[360px] xl:w-[400px] shrink-0 mt-10 lg:mt-4">
|
||
<div className="bg-white rounded-2xl shadow-xl overflow-hidden border border-gray-100">
|
||
<div className="relative h-48 sm:h-56 bg-gradient-to-br from-emerald-400 via-teal-500 to-cyan-600 flex items-center justify-center cursor-pointer group overflow-hidden">
|
||
<div className="absolute inset-0 opacity-20">
|
||
<div className="absolute top-4 left-4 w-20 h-16 rounded-lg bg-white/20" />
|
||
<div className="absolute bottom-6 right-6 w-24 h-14 rounded-lg bg-white/15" />
|
||
<div className="absolute top-1/2 left-1/3 w-16 h-16 rounded-full bg-white/10" />
|
||
</div>
|
||
<div className="absolute bottom-0 left-0 right-0 h-1/3 bg-gradient-to-t from-black/20 to-transparent" />
|
||
<button className="relative w-16 h-16 rounded-full bg-white/95 flex items-center justify-center shadow-lg group-hover:scale-110 transition-transform">
|
||
<svg
|
||
className="w-7 h-7 text-emerald-600 ml-1"
|
||
fill="currentColor"
|
||
viewBox="0 0 24 24"
|
||
>
|
||
<path d="M8 5v14l11-7z" />
|
||
</svg>
|
||
</button>
|
||
</div>
|
||
|
||
<form onSubmit={handleJoin} className="p-5">
|
||
<input
|
||
type="email"
|
||
value={email}
|
||
onChange={(e) => setEmail(e.target.value)}
|
||
placeholder="输入你的邮箱..."
|
||
className="w-full border border-gray-200 rounded-lg px-4 py-3 text-sm placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-[#ff4d4f]/20 focus:border-[#ff4d4f] transition-colors mb-3"
|
||
/>
|
||
<button
|
||
type="submit"
|
||
className="w-full bg-[#ff4d4f] hover:bg-[#ff3333] text-white py-3 rounded-lg text-sm font-semibold transition-colors active:scale-[0.98]"
|
||
>
|
||
加入游牧中国 →
|
||
</button>
|
||
<p className="text-xs text-gray-400 text-center mt-3">
|
||
已有账号?输入邮箱即可自动登录
|
||
</p>
|
||
</form>
|
||
</div>
|
||
|
||
<div className="mt-4 flex flex-wrap gap-2 justify-center">
|
||
<Link
|
||
href="/meetups"
|
||
className="text-xs text-gray-400 hover:text-gray-600 bg-white rounded-full px-3 py-1.5 border border-gray-100 transition-colors"
|
||
>
|
||
🍹 线下聚会
|
||
</Link>
|
||
<Link
|
||
href="/dating"
|
||
className="text-xs text-gray-400 hover:text-gray-600 bg-white rounded-full px-3 py-1.5 border border-gray-100 transition-colors"
|
||
>
|
||
❤️ 交友约会
|
||
</Link>
|
||
<Link
|
||
href="/join"
|
||
className="text-xs text-gray-400 hover:text-gray-600 bg-white rounded-full px-3 py-1.5 border border-gray-100 transition-colors"
|
||
>
|
||
💬 加入社群
|
||
</Link>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
);
|
||
}
|