- Remove hero section from analysis page for cleaner interface - Relocate timeframe selection to Quick Analysis section for better UX flow - Remove outdated Quick Actions timeframe buttons section - Reduce coin selection from 8 to 4 most popular coins (BTC, ETH, SOL, SUI) - Replace Unicode coin symbols with professional CoinGecko icon images - Convert coin layout from 2x2 grid to full-width horizontal row - Improve layout selection with descriptive AI/DIY indicators - Add sessionId support for enhanced progress tracking - Clean up unused quickTimeframeTest and testAllTimeframes functions
12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
'use client'
|
|
|
|
import AIAnalysisPanel from '../../components/AIAnalysisPanel'
|
|
|
|
export default function AnalysisPage() {
|
|
return (
|
|
<div className="space-y-8">
|
|
<AIAnalysisPanel />
|
|
</div>
|
|
)
|
|
}
|