38 lines
1.7 KiB
TypeScript
38 lines
1.7 KiB
TypeScript
import Footer from "@/app/components/Footer";
|
||
|
||
export const metadata = {
|
||
title: "关于我们 | 游牧中国",
|
||
description: "认识游牧中国背后的团队,了解我们的使命与愿景。",
|
||
};
|
||
|
||
export default function AboutPage() {
|
||
return (
|
||
<>
|
||
<main className="min-h-screen bg-[#fafafa] dark:bg-gray-950">
|
||
<section className="max-w-4xl mx-auto px-4 sm:px-6 py-12 sm:py-20">
|
||
<h1 className="text-3xl sm:text-4xl font-bold text-gray-900 dark:text-gray-100 mb-6 flex items-center gap-2">
|
||
<span className="w-1 h-10 bg-[#ff4d4f] rounded-full" />
|
||
关于我们
|
||
</h1>
|
||
<p className="text-lg text-gray-600 dark:text-gray-400 leading-relaxed mb-8">
|
||
游牧中国(NomadCNA)是中国数字游民社区,致力于连接全球远程工作者与旅居者。
|
||
我们相信地点自由、工作自由,让每个人都能在探索世界的同时创造价值。
|
||
</p>
|
||
<div className="prose prose-gray dark:prose-invert max-w-none">
|
||
<h2 className="text-xl font-semibold text-gray-900 dark:text-gray-100 mt-10 mb-4">我们的使命</h2>
|
||
<p className="text-gray-600 dark:text-gray-400 mb-4">
|
||
打造中国最活跃的数字游民社区,提供城市攻略、线下聚会、远程工作资源,
|
||
帮助更多人开启游牧式工作与生活。
|
||
</p>
|
||
<h2 className="text-xl font-semibold text-gray-900 dark:text-gray-100 mt-10 mb-4">联系我们</h2>
|
||
<p className="text-gray-600 dark:text-gray-400">
|
||
如有合作或咨询,欢迎通过社群或邮件与我们联系。
|
||
</p>
|
||
</div>
|
||
</section>
|
||
</main>
|
||
<Footer />
|
||
</>
|
||
);
|
||
}
|