00Boobs00 commited on
Commit
c5603a9
·
verified ·
1 Parent(s): f34e9c0

Upload components/Header.jsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/Header.jsx +28 -0
components/Header.jsx ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import Link from 'next/link';
2
+ import { Github, Cpu } from 'lucide-react';
3
+
4
+ export default function Header() {
5
+ return (
6
+ <header className="h-[64px] bg-panel/80 backdrop-blur-md border-b border-border flex items-center justify-between px-6 z-50 relative">
7
+ <div className="flex items-center gap-3">
8
+ <div className="w-8 h-8 bg-gradient-to-br from-primary to-accent rounded-md flex items-center justify-center text-white font-bold text-lg shadow-lg shadow-primary/20">
9
+ <Cpu size={20} />
10
+ </div>
11
+ <h1 className="text-xl font-bold tracking-tight bg-gradient-to-r from-primary to-accent bg-clip-text text-transparent">
12
+ NeuroArch Studio
13
+ </h1>
14
+ </div>
15
+
16
+ <div className="flex items-center gap-6">
17
+ <Link
18
+ href="https://huggingface.co/spaces/akhaliq/anycoder"
19
+ target="_blank"
20
+ className="flex items-center gap-2 text-muted hover:text-primary transition-colors text-sm font-medium"
21
+ >
22
+ <span>Built with anycoder</span>
23
+ <Github size={14} />
24
+ </Link>
25
+ </div>
26
+ </header>
27
+ );
28
+ }