kizabgd123 commited on
Commit
985d50c
·
verified ·
1 Parent(s): 123dfc5

Upload components/Header.jsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/Header.jsx +15 -0
components/Header.jsx ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import Link from 'next/link';
2
+
3
+ export default function Header() {
4
+ return (
5
+ <header className="relative">
6
+ <div className="container mx-auto px-4 py-8">
7
+ <h1 className="main-header">Kaggle Intelligence Harvester</h1>
8
+ <p className="sub-header">Extract, Validate, and Train with Kaggle-winning Hyperparameters</p>
9
+ </div>
10
+ <Link href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank" className="anycoder-link">
11
+ Built with anycoder
12
+ </Link>
13
+ </header>
14
+ );
15
+ }