This commit is contained in:
2025-11-07 00:46:35 +01:00
parent 2118f002d1
commit c3f837b90f
143 changed files with 4223 additions and 9686 deletions

View File

@@ -0,0 +1,15 @@
export default function TradingGraph() {
return (
<section id="live" className="py-20 bg-gradient-to-b from-slate-900 to-slate-800">
<div className="container mx-auto px-4">
<h2 className="text-3xl md:text-4xl font-bold mb-6 text-rainbow">Live Performance</h2>
<div className="card p-4 md:p-6">
<div className="mb-3 text-sm text-gray-400">Trading212 graph placeholder</div>
<div className="aspect-[16/9] w-full rounded border border-slate-700 bg-black/40 grid place-items-center">
<span className="text-gray-400">Graph will appear here</span>
</div>
</div>
</div>
</section>
);
}