Files
rent/apps/official-website/app/page.tsx
T
2026-05-13 17:59:30 +08:00

267 lines
13 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import Link from 'next/link';
import Image from 'next/image';
export default function Home() {
return (
<div className="min-h-screen bg-white">
{/* 导航栏 */}
<header className="fixed top-0 left-0 right-0 z-50 bg-white/95 backdrop-blur-sm border-b border-gray-100">
<nav className="max-w-7xl mx-auto px-6 py-4 flex items-center justify-between">
<div className="flex items-center gap-2">
<div className="w-10 h-10 bg-gradient-to-br from-blue-500 to-purple-600 rounded-lg flex items-center justify-center">
<span className="text-white font-bold text-xl"></span>
</div>
<span className="text-2xl font-bold bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent">
</span>
</div>
<div className="hidden md:flex items-center gap-8">
<Link href="/#features" className="text-gray-600 hover:text-gray-900 transition">
</Link>
<Link href="/#services" className="text-gray-600 hover:text-gray-900 transition">
</Link>
<Link href="/about" className="text-gray-600 hover:text-gray-900 transition">
</Link>
<Link href="/contact" className="text-gray-600 hover:text-gray-900 transition">
</Link>
</div>
<div className="flex items-center gap-4">
<button className="px-6 py-2 text-gray-600 hover:text-gray-900 transition">
</button>
<button className="px-6 py-2 bg-gradient-to-r from-blue-600 to-purple-600 text-white rounded-full hover:shadow-lg transition">
</button>
</div>
</nav>
</header>
{/* Hero Section */}
<section className="pt-32 pb-20 px-6">
<div className="max-w-7xl mx-auto">
<div className="grid md:grid-cols-2 gap-12 items-center">
<div>
<h1 className="text-5xl md:text-6xl font-bold leading-tight mb-6">
<span className="bg-gradient-to-r from-blue-600 to-purple-600 bg-clip-text text-transparent">
宿
</span>
<br />
<span className="text-gray-900"></span>
</h1>
<p className="text-xl text-gray-600 mb-8 leading-relaxed">
宿
<br />
便宿
</p>
<div className="flex gap-4">
<button className="px-8 py-4 bg-gradient-to-r from-blue-600 to-purple-600 text-white rounded-full text-lg font-semibold hover:shadow-xl transition">
</button>
<button className="px-8 py-4 border-2 border-gray-300 text-gray-700 rounded-full text-lg font-semibold hover:border-gray-400 transition">
</button>
</div>
</div>
<div className="relative h-[500px] rounded-2xl overflow-hidden shadow-2xl">
<div className="absolute inset-0 bg-gradient-to-br from-blue-500/20 to-purple-600/20"></div>
<div className="absolute inset-0 flex items-center justify-center">
<div className="text-center">
<div className="w-32 h-32 bg-white rounded-3xl shadow-xl flex items-center justify-center mb-4 mx-auto">
<span className="text-6xl">🏨</span>
</div>
<p className="text-gray-600 text-lg"></p>
</div>
</div>
</div>
</div>
</div>
</section>
{/* 数据统计 */}
<section className="py-16 bg-gradient-to-r from-blue-600 to-purple-600">
<div className="max-w-7xl mx-auto px-6">
<div className="grid grid-cols-2 md:grid-cols-4 gap-8 text-center text-white">
<div>
<div className="text-4xl font-bold mb-2">10+</div>
<div className="text-blue-100"></div>
</div>
<div>
<div className="text-4xl font-bold mb-2">50+</div>
<div className="text-blue-100"></div>
</div>
<div>
<div className="text-4xl font-bold mb-2">100+</div>
<div className="text-blue-100"></div>
</div>
<div>
<div className="text-4xl font-bold mb-2">98%</div>
<div className="text-blue-100"></div>
</div>
</div>
</div>
</section>
{/* 产品特色 */}
<section id="features" className="py-20 px-6">
<div className="max-w-7xl mx-auto">
<div className="text-center mb-16">
<h2 className="text-4xl font-bold mb-4"></h2>
<p className="text-xl text-gray-600">宿</p>
</div>
<div className="grid md:grid-cols-3 gap-8">
<div className="p-8 rounded-2xl border border-gray-200 hover:shadow-xl transition">
<div className="w-16 h-16 bg-blue-100 rounded-2xl flex items-center justify-center mb-6">
<span className="text-3xl">🔍</span>
</div>
<h3 className="text-2xl font-bold mb-4"></h3>
<p className="text-gray-600 leading-relaxed">
</p>
</div>
<div className="p-8 rounded-2xl border border-gray-200 hover:shadow-xl transition">
<div className="w-16 h-16 bg-purple-100 rounded-2xl flex items-center justify-center mb-6">
<span className="text-3xl">💰</span>
</div>
<h3 className="text-2xl font-bold mb-4"></h3>
<p className="text-gray-600 leading-relaxed">
</p>
</div>
<div className="p-8 rounded-2xl border border-gray-200 hover:shadow-xl transition">
<div className="w-16 h-16 bg-green-100 rounded-2xl flex items-center justify-center mb-6">
<span className="text-3xl">🛡</span>
</div>
<h3 className="text-2xl font-bold mb-4"></h3>
<p className="text-gray-600 leading-relaxed">
退
</p>
</div>
</div>
</div>
</section>
{/* 服务优势 */}
<section id="services" className="py-20 px-6 bg-gray-50">
<div className="max-w-7xl mx-auto">
<div className="text-center mb-16">
<h2 className="text-4xl font-bold mb-4"></h2>
<p className="text-xl text-gray-600"></p>
</div>
<div className="grid md:grid-cols-2 gap-12 items-center">
<div className="space-y-6">
<div className="flex gap-4">
<div className="w-12 h-12 bg-blue-600 rounded-full flex items-center justify-center flex-shrink-0">
<span className="text-white text-xl"></span>
</div>
<div>
<h3 className="text-xl font-bold mb-2">7×24</h3>
<p className="text-gray-600">线</p>
</div>
</div>
<div className="flex gap-4">
<div className="w-12 h-12 bg-purple-600 rounded-full flex items-center justify-center flex-shrink-0">
<span className="text-white text-xl"></span>
</div>
<div>
<h3 className="text-xl font-bold mb-2"></h3>
<p className="text-gray-600"></p>
</div>
</div>
<div className="flex gap-4">
<div className="w-12 h-12 bg-green-600 rounded-full flex items-center justify-center flex-shrink-0">
<span className="text-white text-xl"></span>
</div>
<div>
<h3 className="text-xl font-bold mb-2">退</h3>
<p className="text-gray-600">退</p>
</div>
</div>
<div className="flex gap-4">
<div className="w-12 h-12 bg-orange-600 rounded-full flex items-center justify-center flex-shrink-0">
<span className="text-white text-xl"></span>
</div>
<div>
<h3 className="text-xl font-bold mb-2"></h3>
<p className="text-gray-600">宿</p>
</div>
</div>
</div>
<div className="relative h-[400px] rounded-2xl overflow-hidden shadow-xl">
<div className="absolute inset-0 bg-gradient-to-br from-blue-500 to-purple-600 flex items-center justify-center">
<div className="text-center text-white">
<div className="text-6xl mb-4">🏆</div>
<div className="text-2xl font-bold"></div>
<div className="text-blue-100 mt-2"></div>
</div>
</div>
</div>
</div>
</div>
</section>
{/* CTA Section */}
<section className="py-20 px-6">
<div className="max-w-4xl mx-auto text-center">
<h2 className="text-4xl font-bold mb-6">宿</h2>
<p className="text-xl text-gray-600 mb-8">
便
</p>
<div className="flex justify-center gap-4">
<button className="px-8 py-4 bg-gradient-to-r from-blue-600 to-purple-600 text-white rounded-full text-lg font-semibold hover:shadow-xl transition">
</button>
</div>
</div>
</section>
{/* Footer */}
<footer className="bg-gray-900 text-gray-300 py-12 px-6">
<div className="max-w-7xl mx-auto">
<div className="grid md:grid-cols-4 gap-8 mb-8">
<div>
<div className="flex items-center gap-2 mb-4">
<div className="w-8 h-8 bg-gradient-to-br from-blue-500 to-purple-600 rounded-lg flex items-center justify-center">
<span className="text-white font-bold"></span>
</div>
<span className="text-xl font-bold text-white"></span>
</div>
<p className="text-sm">宿</p>
</div>
<div>
<h4 className="text-white font-bold mb-4"></h4>
<ul className="space-y-2 text-sm">
<li><Link href="/#features" className="hover:text-white transition"></Link></li>
<li><Link href="/#services" className="hover:text-white transition"></Link></li>
<li><Link href="/download" className="hover:text-white transition"></Link></li>
</ul>
</div>
<div>
<h4 className="text-white font-bold mb-4"></h4>
<ul className="space-y-2 text-sm">
<li><Link href="/about" className="hover:text-white transition"></Link></li>
<li><Link href="/contact" className="hover:text-white transition"></Link></li>
<li><Link href="/join" className="hover:text-white transition"></Link></li>
</ul>
</div>
<div>
<h4 className="text-white font-bold mb-4"></h4>
<ul className="space-y-2 text-sm">
<li><Link href="/help" className="hover:text-white transition"></Link></li>
<li><Link href="/privacy" className="hover:text-white transition"></Link></li>
<li><Link href="/terms" className="hover:text-white transition"></Link></li>
</ul>
</div>
</div>
<div className="border-t border-gray-800 pt-8 text-center text-sm">
<p>&copy; 2026 . All rights reserved.</p>
</div>
</div>
</footer>
</div>
);
}