This commit is contained in:
2025-11-07 17:43:37 +01:00
parent c3f837b90f
commit a645c87020
47 changed files with 238 additions and 2203 deletions

View File

@@ -1,12 +1,12 @@
export default function TradingGraph() {
return (
<section id="live" className="py-20 bg-gradient-to-b from-slate-900 to-slate-800">
<section id="live" className="py-20 bg-gradient-to-b from-brand-bg to-brand-bgLight">
<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 className="mb-3 text-sm text-brand-text/60">Trading212 graph placeholder</div>
<div className="aspect-[16/9] w-full rounded border border-brand-lines/50 bg-brand-bg/40 grid place-items-center">
<span className="text-brand-text/60">Graph will appear here</span>
</div>
</div>
</div>