hasanalrobasi commited on
Commit
93d2a22
·
verified ·
1 Parent(s): ba2f950

Upload components/Header.jsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/Header.jsx +18 -0
components/Header.jsx ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import Link from 'next/link'
2
+
3
+ export default function Header() {
4
+ return (
5
+ <header className="bg-dark-900 text-white p-4 shadow-lg">
6
+ <div className="container mx-auto flex justify-between items-center">
7
+ <h1 className="text-2xl font-bold">Node Workflow Visualizer</h1>
8
+ <Link
9
+ href="https://huggingface.co/spaces/akhaliq/anycoder"
10
+ className="text-primary-500 hover:underline"
11
+ target="_blank"
12
+ >
13
+ Built with anycoder
14
+ </Link>
15
+ </div>
16
+ </header>
17
+ )
18
+ }