File size: 707 Bytes
24f95f0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
export default function Header() {
  return (
    <header className="border-b border-gray-800 bg-gray-900/50 backdrop-blur-sm">
      <div className="container mx-auto px-4 py-4">
        <div className="flex items-center justify-between">
          <div className="flex items-center gap-3">
            <div className="text-2xl font-bold bg-gradient-to-r from-blue-400 to-purple-400 bg-clip-text text-transparent">
              MiroOrg
            </div>
            <div className="text-xs text-gray-500 font-mono">v1.1</div>
          </div>
          <div className="text-sm text-gray-400">
            AI Financial Intelligence System
          </div>
        </div>
      </div>
    </header>
  );
}