Spaces:
Build error
Build error
Upload components/Footer.js with huggingface_hub
Browse files- components/Footer.js +96 -0
components/Footer.js
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import Link from 'next/link'
|
| 2 |
+
import { HiSparkles, HiMail, HiPhone } from 'react-icons/hi'
|
| 3 |
+
|
| 4 |
+
export default function Footer() {
|
| 5 |
+
return (
|
| 6 |
+
<footer className="bg-gray-900 text-white">
|
| 7 |
+
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
|
| 8 |
+
<div className="grid grid-cols-1 md:grid-cols-4 gap-8">
|
| 9 |
+
{/* Brand */}
|
| 10 |
+
<div className="col-span-1 md:col-span-2">
|
| 11 |
+
<div className="flex items-center space-x-2 mb-4">
|
| 12 |
+
<div className="bg-primary-600 p-2 rounded-lg">
|
| 13 |
+
<HiSparkles className="h-6 w-6 text-white" />
|
| 14 |
+
</div>
|
| 15 |
+
<div>
|
| 16 |
+
<span className="text-xl font-bold">AI.Wiki.BR</span>
|
| 17 |
+
<p className="text-sm text-gray-400">Por Prof. Gabriel Ramos</p>
|
| 18 |
+
</div>
|
| 19 |
+
</div>
|
| 20 |
+
<p className="text-gray-300 mb-4 max-w-md">
|
| 21 |
+
Transformando a prática jurídica e administrativa através da Inteligência Artificial.
|
| 22 |
+
Aprenda como usar IA no seu dia a dia profissional e nos estudos.
|
| 23 |
+
</p>
|
| 24 |
+
<div className="space-y-2">
|
| 25 |
+
<div className="flex items-center space-x-2 text-sm text-gray-400">
|
| 26 |
+
<HiMail className="h-4 w-4" />
|
| 27 |
+
<span>contato@ai.wiki.br</span>
|
| 28 |
+
</div>
|
| 29 |
+
<div className="flex items-center space-x-2 text-sm text-gray-400">
|
| 30 |
+
<HiPhone className="h-4 w-4" />
|
| 31 |
+
<span>+55 (11) 99999-9999</span>
|
| 32 |
+
</div>
|
| 33 |
+
</div>
|
| 34 |
+
</div>
|
| 35 |
+
|
| 36 |
+
{/* Quick Links */}
|
| 37 |
+
<div>
|
| 38 |
+
<h3 className="text-lg font-semibold mb-4">Links Rápidos</h3>
|
| 39 |
+
<ul className="space-y-2">
|
| 40 |
+
<li>
|
| 41 |
+
<Link href="/" className="text-gray-300 hover:text-white transition-colors duration-200">
|
| 42 |
+
Início
|
| 43 |
+
</Link>
|
| 44 |
+
</li>
|
| 45 |
+
<li>
|
| 46 |
+
<Link href="/prompts" className="text-gray-300 hover:text-white transition-colors duration-200">
|
| 47 |
+
Biblioteca de Prompts
|
| 48 |
+
</Link>
|
| 49 |
+
</li>
|
| 50 |
+
<li>
|
| 51 |
+
<Link href="#sobre" className="text-gray-300 hover:text-white transition-colors duration-200">
|
| 52 |
+
Sobre o Professor
|
| 53 |
+
</Link>
|
| 54 |
+
</li>
|
| 55 |
+
<li>
|
| 56 |
+
<Link href="#contato" className="text-gray-300 hover:text-white transition-colors duration-200">
|
| 57 |
+
Contato
|
| 58 |
+
</Link>
|
| 59 |
+
</li>
|
| 60 |
+
</ul>
|
| 61 |
+
</div>
|
| 62 |
+
|
| 63 |
+
{/* Categories */}
|
| 64 |
+
<div>
|
| 65 |
+
<h3 className="text-lg font-semibold mb-4">Áreas de Atuação</h3>
|
| 66 |
+
<ul className="space-y-2">
|
| 67 |
+
<li>
|
| 68 |
+
<span className="text-gray-300">Escritórios Jurídicos</span>
|
| 69 |
+
</li>
|
| 70 |
+
<li>
|
| 71 |
+
<span className="text-gray-300">Escritórios Administrativos</span>
|
| 72 |
+
</li>
|
| 73 |
+
<li>
|
| 74 |
+
<span className="text-gray-300">Concursos Públicos</span>
|
| 75 |
+
</li>
|
| 76 |
+
<li>
|
| 77 |
+
<span className="text-gray-300">Estudos Avançados</span>
|
| 78 |
+
</li>
|
| 79 |
+
</ul>
|
| 80 |
+
</div>
|
| 81 |
+
</div>
|
| 82 |
+
|
| 83 |
+
<div className="border-t border-gray-800 mt-8 pt-8">
|
| 84 |
+
<div className="flex flex-col md:flex-row justify-between items-center">
|
| 85 |
+
<p className="text-gray-400 text-sm">
|
| 86 |
+
© 2024 AI.Wiki.BR. Todos os direitos reservados.
|
| 87 |
+
</p>
|
| 88 |
+
<p className="text-gray-400 text-sm mt-2 md:mt-0">
|
| 89 |
+
Desenvolvido com ❤️ para a comunidade jurídica e administrativa brasileira
|
| 90 |
+
</p>
|
| 91 |
+
</div>
|
| 92 |
+
</div>
|
| 93 |
+
</div>
|
| 94 |
+
</footer>
|
| 95 |
+
)
|
| 96 |
+
}
|