Feat: Placeholder live trading dashboard

This commit is contained in:
2026-03-15 16:51:40 -07:00
parent 32341e76b0
commit b6b0d990d4

18
app/dash/page.js Normal file
View File

@@ -0,0 +1,18 @@
'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>
);
}