mirror of
https://github.com/multipleof4/KalBot.git
synced 2026-03-17 14:01:02 +00:00
19 lines
714 B
JavaScript
19 lines
714 B
JavaScript
'use client';
|
|
|
|
const GREEN = '#16A34A';
|
|
|
|
export default function LiveDashboard() {
|
|
return (
|
|
<div className="min-h-screen bg-gray-50 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-400 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 border border-gray-200 text-gray-600 hover:bg-gray-50 transition-all shadow-sm">
|
|
← Back to Paper Trading
|
|
</a>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|