feat: Restructure UI with navigation and separate pages
- Add Navigation component with clean tab-based navigation - Create StatusOverview component for main dashboard indicators - Split functionality into separate pages: * Overview page with status and quick actions * Analysis page for AI analysis * Trading page for manual trading and history * Automation page for auto-trading settings * Settings page for developer configuration - Add React dependencies to package.json - Maintain clean separation of concerns
This commit is contained in:
16
app/analysis/page.tsx
Normal file
16
app/analysis/page.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import AIAnalysisPanel from '../../components/AIAnalysisPanel'
|
||||
|
||||
export default function AnalysisPage() {
|
||||
return (
|
||||
<div className="space-y-8">
|
||||
<div className="flex items-center justify-between">
|
||||
<div>
|
||||
<h1 className="text-3xl font-bold text-white">AI Analysis</h1>
|
||||
<p className="text-gray-400 mt-2">Get market insights and AI-powered analysis</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<AIAnalysisPanel />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user