00Boobs00 commited on
Commit
ee9ebc7
·
verified ·
1 Parent(s): 35fe5bb

Upload components/Header.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/Header.js +29 -0
components/Header.js ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import Link from 'next/link';
2
+ import { Cpu } from 'lucide-react';
3
+
4
+ export default function Header() {
5
+ return (
6
+ <header className="w-full bg-slate-900 border-b border-slate-700 shadow-lg sticky top-0 z-50">
7
+ <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
8
+ <div className="flex items-center justify-between h-16">
9
+ <div className="flex items-center gap-2">
10
+ <Cpu className="w-8 h-8 text-indigo-500" />
11
+ <h1 className="text-xl font-bold text-white tracking-tight">
12
+ AI Command Center
13
+ </h1>
14
+ </div>
15
+ <nav className="flex items-center">
16
+ <Link
17
+ href="https://huggingface.co/spaces/akhaliq/anycoder"
18
+ target="_blank"
19
+ rel="noopener noreferrer"
20
+ className="text-sm font-medium text-indigo-400 hover:text-indigo-300 transition-colors duration-200 flex items-center gap-1"
21
+ >
22
+ Built with anycoder
23
+ </Link>
24
+ </nav>
25
+ </div>
26
+ </div>
27
+ </header>
28
+ );
29
+ }