46 lines
1.8 KiB
TypeScript
46 lines
1.8 KiB
TypeScript
export function About() {
|
|
return (
|
|
<div>
|
|
<div className="flex items-center gap-4 mb-8">
|
|
<div className="w-16 h-16 bg-gradient-to-br from-orange-400 to-red-500 rounded-2xl flex items-center justify-center text-3xl shadow-lg">
|
|
🦞
|
|
</div>
|
|
<div>
|
|
<h1 className="text-2xl font-bold text-gray-900">ZCLAW</h1>
|
|
<p className="text-sm text-orange-500">版本 0.2.0</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="bg-gray-50 rounded-xl p-5 mb-4">
|
|
<div className="flex justify-between items-center">
|
|
<div>
|
|
<h2 className="text-sm font-bold text-gray-900">检查更新</h2>
|
|
</div>
|
|
<button className="text-sm bg-orange-500 text-white rounded-lg px-4 py-1.5 hover:bg-orange-600 flex items-center gap-1">
|
|
🔄 检查更新
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="bg-gray-50 rounded-xl p-5 mb-8">
|
|
<div className="flex justify-between items-center">
|
|
<div>
|
|
<h2 className="text-sm font-bold text-gray-900">更新日志</h2>
|
|
<p className="text-xs text-gray-500 mt-0.5">查看当前版本的更新内容</p>
|
|
</div>
|
|
<button className="border border-gray-300 rounded-lg px-4 py-1.5 text-sm hover:bg-gray-100">更新日志</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="text-center text-xs text-gray-400 space-y-1">
|
|
<p>© 2026 ZCLAW | Powered by OpenClaw</p>
|
|
<p>基于 OpenClaw 开源框架定制</p>
|
|
<div className="flex justify-center gap-4 mt-3">
|
|
<a href="#" className="text-orange-500 hover:text-orange-600">隐私政策</a>
|
|
<a href="#" className="text-orange-500 hover:text-orange-600">用户协议</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|