Spaces:
Build error
Build error
Upload components/Footer.jsx with huggingface_hub
Browse files- components/Footer.jsx +33 -0
components/Footer.jsx
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
export default function Footer() {
|
| 2 |
+
return (
|
| 3 |
+
<footer className="bg-primary text-white py-12">
|
| 4 |
+
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 5 |
+
<div className="grid md:grid-cols-3 gap-8">
|
| 6 |
+
<div>
|
| 7 |
+
<h3 className="text-xl font-bold mb-4">Ecclesiato</h3>
|
| 8 |
+
<p className="text-gray-300">
|
| 9 |
+
Transformando ideias em soluções digitais inovadoras.
|
| 10 |
+
</p>
|
| 11 |
+
</div>
|
| 12 |
+
<div>
|
| 13 |
+
<h4 className="text-lg font-semibold mb-4">Links Rápidos</h4>
|
| 14 |
+
<ul className="space-y-2">
|
| 15 |
+
<li><a href="/" className="text-gray-300 hover:text-white">Home</a></li>
|
| 16 |
+
<li><a href="/about" className="text-gray-300 hover:text-white">Sobre</a></li>
|
| 17 |
+
<li><a href="/services" className="text-gray-300 hover:text-white">Serviços</a></li>
|
| 18 |
+
<li><a href="/contact" className="text-gray-300 hover:text-white">Contato</a></li>
|
| 19 |
+
</ul>
|
| 20 |
+
</div>
|
| 21 |
+
<div>
|
| 22 |
+
<h4 className="text-lg font-semibold mb-4">Contato</h4>
|
| 23 |
+
<p className="text-gray-300">Email: contato@ecclesiato.com.br</p>
|
| 24 |
+
<p className="text-gray-300">Telefone: (11) 1234-5678</p>
|
| 25 |
+
</div>
|
| 26 |
+
</div>
|
| 27 |
+
<div className="border-t border-gray-600 mt-8 pt-8 text-center text-gray-400">
|
| 28 |
+
<p>© {new Date().getFullYear()} Ecclesiato. Todos os direitos reservados.</p>
|
| 29 |
+
</div>
|
| 30 |
+
</div>
|
| 31 |
+
</footer>
|
| 32 |
+
);
|
| 33 |
+
}
|