15 lines
678 B
TypeScript
15 lines
678 B
TypeScript
export default function TradingGraph() {
|
|
return (
|
|
<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-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>
|
|
</section>
|
|
);
|
|
} |