style: replace Sparkles icon with QuantIQ logo in AI Analyst header
Browse files
frontend/src/components/AIAnalyst.tsx
CHANGED
|
@@ -1,5 +1,4 @@
|
|
| 1 |
-
|
| 2 |
-
import { Sparkles } from 'lucide-react';
|
| 3 |
|
| 4 |
interface AIInsight {
|
| 5 |
ticker: string;
|
|
@@ -52,7 +51,7 @@ export default function AIAnalyst({
|
|
| 52 |
<div className="glass-panel insight-panel">
|
| 53 |
<div className="panel-title">
|
| 54 |
<div style={{ display: 'flex', alignItems: 'center', gap: '8px' }}>
|
| 55 |
-
<
|
| 56 |
<span>QuantIQ AI Analyst</span>
|
| 57 |
</div>
|
| 58 |
</div>
|
|
|
|
| 1 |
+
import Logo from './Logo';
|
|
|
|
| 2 |
|
| 3 |
interface AIInsight {
|
| 4 |
ticker: string;
|
|
|
|
| 51 |
<div className="glass-panel insight-panel">
|
| 52 |
<div className="panel-title">
|
| 53 |
<div style={{ display: 'flex', alignItems: 'center', gap: '8px' }}>
|
| 54 |
+
<Logo size={18} className="glow-cyan" />
|
| 55 |
<span>QuantIQ AI Analyst</span>
|
| 56 |
</div>
|
| 57 |
</div>
|