mirror of
https://github.com/multipleof4/KalBot.git
synced 2026-03-17 14:01:02 +00:00
19 lines
709 B
JavaScript
19 lines
709 B
JavaScript
'use client';
|
|
|
|
const GREEN = '#28CC95';
|
|
|
|
export default function LiveDashboard() {
|
|
return (
|
|
<div className="min-h-screen bg-[#0a0a0a] flex items-center justify-center">
|
|
<div className="text-center space-y-4">
|
|
<h1 className="text-2xl font-bold" style={{ color: GREEN }}>Live Trading</h1>
|
|
<p className="text-gray-500 text-sm">Coming soon, Meowster.</p>
|
|
<p className="text-gray-600 text-xs">Find a profitable paper strategy first.</p>
|
|
<a href="/paper" className="inline-block text-sm px-4 py-2 rounded-lg bg-white/5 border border-white/10 text-gray-300 hover:bg-white/10 transition-all">
|
|
← Back to Paper Trading
|
|
</a>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|