Spaces:
Running
Running
Upload components/Header.js with huggingface_hub
Browse files- components/Header.js +16 -26
components/Header.js
CHANGED
|
@@ -1,32 +1,22 @@
|
|
| 1 |
export default function Header() {
|
| 2 |
return (
|
| 3 |
-
<header className="border-b border-
|
| 4 |
-
<div className="max-w-
|
| 5 |
-
<div className="flex items-center
|
| 6 |
-
<div className="flex items-center
|
| 7 |
-
|
| 8 |
-
🤖
|
| 9 |
-
</div>
|
| 10 |
-
<div>
|
| 11 |
-
<h1 className="text-xl font-bold bg-gradient-to-r from-indigo-400 to-purple-400 bg-clip-text text-transparent">
|
| 12 |
-
Autonomous AI Dev System
|
| 13 |
-
</h1>
|
| 14 |
-
<p className="text-xs text-gray-500">Multi-Agent Software Engineering Pipeline</p>
|
| 15 |
-
</div>
|
| 16 |
</div>
|
| 17 |
-
<div
|
| 18 |
-
<
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
</
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
>
|
| 28 |
-
Built with anycoder
|
| 29 |
-
</a>
|
| 30 |
</div>
|
| 31 |
</div>
|
| 32 |
</div>
|
|
|
|
| 1 |
export default function Header() {
|
| 2 |
return (
|
| 3 |
+
<header className="border-b-4 border-black bg-comic-yellow py-4 px-4 shadow-comic-sm sticky top-0 z-50">
|
| 4 |
+
<div className="max-w-6xl mx-auto flex items-center justify-between">
|
| 5 |
+
<div className="flex items-center gap-3">
|
| 6 |
+
<div className="w-12 h-12 bg-white border-4 border-black rounded-full flex items-center justify-center text-3xl shadow-comic-sm animate-pop">
|
| 7 |
+
♟️
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
</div>
|
| 9 |
+
<div>
|
| 10 |
+
<h1 className="text-3xl sm:text-4xl font-black font-['Bangers'] tracking-tight text-black leading-none">
|
| 11 |
+
COMIC CHESS
|
| 12 |
+
</h1>
|
| 13 |
+
<p className="text-xs font-bold uppercase tracking-widest mt-1">Arena of Kings</p>
|
| 14 |
+
</div>
|
| 15 |
+
</div>
|
| 16 |
+
|
| 17 |
+
<div className="hidden sm:block">
|
| 18 |
+
<div className="bg-white border-4 border-black px-4 py-1 transform rotate-2 shadow-comic-sm">
|
| 19 |
+
<span className="font-['Bangers'] text-xl">SEASON 1</span>
|
|
|
|
|
|
|
| 20 |
</div>
|
| 21 |
</div>
|
| 22 |
</div>
|