hooker-dev commited on
Commit
a94318e
·
verified ·
1 Parent(s): 17c6fbd

Upload components/Header.jsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/Header.jsx +23 -0
components/Header.jsx ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ export default function Header() {
2
+ return (
3
+ <header className="text-center space-y-4">
4
+ <h1 className="text-5xl font-bold bg-gradient-to-r from-primary-500 to-secondary-500 bg-clip-text text-transparent">
5
+ 🎨 Z-Image Turbo
6
+ </h1>
7
+ <p className="text-xl text-slate-600 font-normal">
8
+ Fast, high-quality image generation with single-stream diffusion
9
+ </p>
10
+
11
+ <div className="flex justify-center mt-6">
12
+ <a
13
+ href="https://huggingface.co/settings/mcp?add=victor/Z-Image-Turbo-MCP"
14
+ target="_blank"
15
+ rel="noopener noreferrer"
16
+ className="inline-block px-8 py-3 bg-gradient-to-r from-primary-500 to-secondary-500 text-white rounded-full font-semibold shadow-lg hover:shadow-xl transform hover:-translate-y-0.5 transition-all duration-200"
17
+ >
18
+ 🔌 Connect via MCP
19
+ </a>
20
+ </div>
21
+ </header>
22
+ );
23
+ }