File size: 1,016 Bytes
106e469
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import Link from 'next/link';
import { Cpu } from 'lucide-react';

export default function Header() {
  return (
    <header className="w-full bg-slate-900 border-b border-slate-700 shadow-lg">
      <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
        <div className="flex items-center justify-between h-16">
          <div className="flex items-center gap-2">
            <Cpu className="w-8 h-8 text-indigo-500" />
            <h1 className="text-xl font-bold text-white tracking-tight">
              AI Command Center
            </h1>
          </div>
          <nav className="flex items-center">
            <Link 
              href="https://huggingface.co/spaces/akhaliq/anycoder" 
              target="_blank"
              rel="noopener noreferrer"
              className="text-sm font-medium text-slate-300 hover:text-white transition-colors duration-200"
            >
              Built with anycoder
            </Link>
          </nav>
        </div>
      </div>
    </header>
  );
}