Files
2026-03-09 10:32:33 -05:00

38 lines
1.7 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
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 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 />
</>
);
}