fake_shop/app/about/page.jsx

39 lines
1.4 KiB
JavaScript
Raw 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 Link from "next/link";
export default function About() {
return (
<div className="min-h-screen bg-gray-50 p-4">
<h1 className="text-2xl font-bold mb-4">关于我们</h1>
<div className="bg-white p-4 rounded-lg shadow">
<h2 className="text-lg font-semibold">公司名称</h2>
<p className="mt-2">北京万辉启明科技有限公司</p>
<h2 className="text-lg font-semibold mt-4">公司信息</h2>
<p className="mt-2">
我们是一家专注于提供优质宠物用品的公司致力于为您的宠物提供最好的产品和服务
</p>
<h2 className="text-lg font-semibold mt-4">用户协议</h2>
<p className="mt-2">
请在使用我们的服务之前仔细阅读并理解我们的
<Link href="/user-agreement" className="text-blue-500 underline">
用户协议
</Link>
</p>
<h2 className="text-lg font-semibold mt-4">隐私协议</h2>
<p className="mt-2">
我们重视您的隐私详细信息请参阅我们的
<Link href="/privacy-policy" className="text-blue-500 underline">
隐私协议
</Link>
</p>
<h2 className="text-lg font-semibold mt-4">网站版本</h2>
<p className="mt-2">当前网站版本1.0.0</p>
</div>
</div>
);
}