Spaces:
Build error
Build error
Upload components/Footer.js with huggingface_hub
Browse files- components/Footer.js +63 -0
components/Footer.js
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import Link from 'next/link'
|
| 2 |
+
import { Terminal } from 'lucide-react'
|
| 3 |
+
|
| 4 |
+
export default function Footer() {
|
| 5 |
+
return (
|
| 6 |
+
<footer className="bg-black border-t border-gray-800 py-12">
|
| 7 |
+
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 8 |
+
<div className="grid grid-cols-2 md:grid-cols-4 gap-8 mb-8">
|
| 9 |
+
<div className="col-span-2 md:col-span-1">
|
| 10 |
+
<Link href="/" className="flex items-center gap-2 text-white font-bold text-xl tracking-tight mb-4">
|
| 11 |
+
<div className="bg-white text-black p-1 rounded">
|
| 12 |
+
<Terminal size={16} strokeWidth={2.5} />
|
| 13 |
+
</div>
|
| 14 |
+
<span>Deepnote<span className="text-brand-accent">.</span></span>
|
| 15 |
+
</Link>
|
| 16 |
+
<p className="text-gray-500 text-sm">
|
| 17 |
+
The AI-powered workspace for the next generation of developers.
|
| 18 |
+
</p>
|
| 19 |
+
</div>
|
| 20 |
+
|
| 21 |
+
<div>
|
| 22 |
+
<h4 className="text-white font-bold mb-4">Product</h4>
|
| 23 |
+
<ul className="space-y-2 text-sm text-gray-400">
|
| 24 |
+
<li><a href="#" className="hover:text-brand-accent transition-colors">Features</a></li>
|
| 25 |
+
<li><a href="#" className="hover:text-brand-accent transition-colors">Integrations</a></li>
|
| 26 |
+
<li><a href="#" className="hover:text-brand-accent transition-colors">Enterprise</a></li>
|
| 27 |
+
<li><a href="#" className="hover:text-brand-accent transition-colors">Changelog</a></li>
|
| 28 |
+
</ul>
|
| 29 |
+
</div>
|
| 30 |
+
|
| 31 |
+
<div>
|
| 32 |
+
<h4 className="text-white font-bold mb-4">Resources</h4>
|
| 33 |
+
<ul className="space-y-2 text-sm text-gray-400">
|
| 34 |
+
<li><a href="#" className="hover:text-brand-accent transition-colors">Documentation</a></li>
|
| 35 |
+
<li><a href="#" className="hover:text-brand-accent transition-colors">API Reference</a></li>
|
| 36 |
+
<li><a href="#" className="hover:text-brand-accent transition-colors">Community</a></li>
|
| 37 |
+
<li><a href="#" className="hover:text-brand-accent transition-colors">Blog</a></li>
|
| 38 |
+
</ul>
|
| 39 |
+
</div>
|
| 40 |
+
|
| 41 |
+
<div>
|
| 42 |
+
<h4 className="text-white font-bold mb-4">Legal</h4>
|
| 43 |
+
<ul className="space-y-2 text-sm text-gray-400">
|
| 44 |
+
<li><a href="#" className="hover:text-brand-accent transition-colors">Privacy Policy</a></li>
|
| 45 |
+
<li><a href="#" className="hover:text-brand-accent transition-colors">Terms of Service</a></li>
|
| 46 |
+
<li><a href="#" className="hover:text-brand-accent transition-colors">Cookie Policy</a></li>
|
| 47 |
+
</ul>
|
| 48 |
+
</div>
|
| 49 |
+
</div>
|
| 50 |
+
|
| 51 |
+
<div className="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center gap-4">
|
| 52 |
+
<p className="text-gray-500 text-sm">© 2024 Deepnote Inc. All rights reserved.</p>
|
| 53 |
+
<div className="flex items-center gap-2 text-gray-500 text-sm">
|
| 54 |
+
<span>Built with</span>
|
| 55 |
+
<a href="https://huggingface.co/spaces/akhaliq/anycoder" className="text-brand-accent hover:underline font-medium">
|
| 56 |
+
Anycoder
|
| 57 |
+
</a>
|
| 58 |
+
</div>
|
| 59 |
+
</div>
|
| 60 |
+
</div>
|
| 61 |
+
</footer>
|
| 62 |
+
)
|
| 63 |
+
}
|