This commit is contained in:
hu xiaotong
2025-04-17 17:22:28 +08:00
parent 2847df6340
commit 9a9998d2b6

View File

@@ -1,16 +1,16 @@
import React from "react";
const Battles: React.FC = () => {
return (
<div className="min-h-screen bg-[#1A1412] text-white font-sans">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<h1 className="text-3xl font-bold text-[#E6B17E] mb-6"></h1>
<div className="bg-[#2A211E] rounded-lg p-6 border border-[#C17F59]/30">
<p className="text-[#C17F59]"></p>
</div>
</div>
</div>
);
return (
<div className="min-h-screen bg-[#1A1412] text-white font-sans">
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<h1 className="text-3xl font-bold text-[#E6B17E] mb-6"></h1>
<div className="bg-[#2A211E] rounded-lg p-6 border border-[#C17F59]/30">
<p className="text-[#C17F59]"></p>
</div>
</div>
</div>
);
};
export default Battles;