Spaces:
Build error
Build error
Upload components/Header.jsx with huggingface_hub
Browse files- components/Header.jsx +36 -0
components/Header.jsx
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import Link from 'next/link';
|
| 2 |
+
|
| 3 |
+
export default function Header() {
|
| 4 |
+
return (
|
| 5 |
+
<header className="bg-white shadow-sm">
|
| 6 |
+
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 7 |
+
<div className="flex justify-between items-center py-4">
|
| 8 |
+
<div className="flex items-center">
|
| 9 |
+
<Link href="/" className="text-2xl font-bold text-primary">
|
| 10 |
+
Ecclesiato
|
| 11 |
+
</Link>
|
| 12 |
+
</div>
|
| 13 |
+
<nav className="hidden md:flex space-x-8">
|
| 14 |
+
<Link href="/" className="text-gray-700 hover:text-primary">
|
| 15 |
+
Home
|
| 16 |
+
</Link>
|
| 17 |
+
<Link href="/about" className="text-gray-700 hover:text-primary">
|
| 18 |
+
Sobre
|
| 19 |
+
</Link>
|
| 20 |
+
<Link href="/services" className="text-gray-700 hover:text-primary">
|
| 21 |
+
Serviços
|
| 22 |
+
</Link>
|
| 23 |
+
<Link href="/contact" className="text-gray-700 hover:text-primary">
|
| 24 |
+
Contato
|
| 25 |
+
</Link>
|
| 26 |
+
</nav>
|
| 27 |
+
<div className="text-sm text-gray-500">
|
| 28 |
+
<a href="https://huggingface.co/spaces/akhaliq/anycoder" target="_blank" rel="noopener noreferrer">
|
| 29 |
+
Built with anycoder
|
| 30 |
+
</a>
|
| 31 |
+
</div>
|
| 32 |
+
</div>
|
| 33 |
+
</div>
|
| 34 |
+
</header>
|
| 35 |
+
);
|
| 36 |
+
}
|