Refactor: Convert to light mode

This commit is contained in:
2026-03-15 17:36:17 -07:00
parent 23d8df2116
commit 8363c85f38

View File

@@ -1,15 +1,15 @@
'use client';
const GREEN = '#28CC95';
const GREEN = '#16A34A';
export default function LiveDashboard() {
return (
<div className="min-h-screen bg-[#0a0a0a] flex items-center justify-center">
<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-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">
<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>