- Fixed layout conflicts by removing minimal layout.tsx in favor of complete layout.js - Restored original AI Analysis page with full TradingView integration - Connected enhanced screenshot API to real TradingView automation service - Fixed screenshot gallery to handle both string and object formats - Added image serving API route for screenshot display - Resolved hydration mismatch issues with suppressHydrationWarning - All navigation pages working (Analysis, Trading, Automation, Settings) - TradingView automation successfully capturing screenshots from AI and DIY layouts - Docker Compose v2 compatibility ensured Working features: - Homepage with hero section and status cards - Navigation menu with Trading Bot branding - Real TradingView screenshot capture - AI-powered chart analysis - Multi-layout support (AI + DIY module) - Screenshot gallery with image serving - API endpoints for balance, status, screenshots, trading
19 lines
502 B
JavaScript
19 lines
502 B
JavaScript
'use client'
|
|
import React from 'react'
|
|
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>
|
|
)
|
|
}
|