diff --git a/components/AIAnalysisPanel.tsx b/components/AIAnalysisPanel.tsx index 3aea769..8afe2ed 100644 --- a/components/AIAnalysisPanel.tsx +++ b/components/AIAnalysisPanel.tsx @@ -24,14 +24,24 @@ const timeframes = [ ] const popularCoins = [ - { name: 'Bitcoin', symbol: 'BTCUSD', icon: '₿', color: 'from-orange-400 to-orange-600' }, - { name: 'Ethereum', symbol: 'ETHUSD', icon: 'Ξ', color: 'from-blue-400 to-blue-600' }, - { name: 'Solana', symbol: 'SOLUSD', icon: '◎', color: 'from-purple-400 to-purple-600' }, - { name: 'Sui', symbol: 'SUIUSD', icon: '🔷', color: 'from-cyan-400 to-cyan-600' }, - { name: 'Avalanche', symbol: 'AVAXUSD', icon: '🔺', color: 'from-red-400 to-red-600' }, - { name: 'Cardano', symbol: 'ADAUSD', icon: '♠', color: 'from-indigo-400 to-indigo-600' }, - { name: 'Polygon', symbol: 'MATICUSD', icon: '🔷', color: 'from-violet-400 to-violet-600' }, - { name: 'Chainlink', symbol: 'LINKUSD', icon: '🔗', color: 'from-blue-400 to-blue-600' }, + { + name: 'Bitcoin', + symbol: 'BTCUSD', + icon: 'https://assets.coingecko.com/coins/images/1/large/bitcoin.png', + color: 'from-orange-400 to-orange-600' + }, + { + name: 'Ethereum', + symbol: 'ETHUSD', + icon: 'https://assets.coingecko.com/coins/images/279/large/ethereum.png', + color: 'from-blue-400 to-blue-600' + }, + { + name: 'Solana', + symbol: 'SOLUSD', + icon: 'https://assets.coingecko.com/coins/images/4128/large/solana.png', + color: 'from-purple-400 to-purple-600' + } ] // Progress tracking interfaces @@ -606,56 +616,8 @@ export default function AIAnalysisPanel({ onAnalysisComplete }: AIAnalysisPanelP - {/* Coin Selection */} -
- {popularCoins.map(coin => ( - - ))} -
- - - {/* Advanced Analysis Section */} -
-

- - Advanced Analysis -

- - {/* Symbol Input */} -
-
- - setSymbol(e.target.value.toUpperCase())} - placeholder="e.g., BTCUSD, ETHUSD" - /> -
-
- {/* Timeframe Selection */} -
+
)}
+ + {/* Coin Selection */} +
+ {popularCoins.map(coin => ( + + ))} +
+
+ + {/* Advanced Analysis Section */} +
+

+ + Advanced Analysis +

+ + {/* Symbol Input */} +
+
+ + setSymbol(e.target.value.toUpperCase())} + placeholder="e.g., BTCUSD, ETHUSD" + /> +
+
+ {/* Layout Selection */}
@@ -746,53 +761,6 @@ export default function AIAnalysisPanel({ onAnalysisComplete }: AIAnalysisPanelP )}
- {/* Quick Timeframe Actions */} -
- -
- {timeframes.map(tf => ( - - ))} -
-
- - -
-
- {/* Analyze Button */}