ColdSlim commited on
Commit
09422cf
·
verified ·
1 Parent(s): 54c7479

Upload components/Footer.js with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/Footer.js +68 -0
components/Footer.js ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import { Cpu, Github, Twitter, Linkedin } from 'lucide-react';
2
+ import Link from 'next/link';
3
+
4
+ export default function Footer() {
5
+ return (
6
+ <footer className="bg-black/40 border-t border-white/10 pt-16 pb-8">
7
+ <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
8
+ <div className="grid grid-cols-1 md:grid-cols-4 gap-12 mb-12">
9
+ <div className="col-span-1 md:col-span-1">
10
+ <Link href="/" className="flex items-center space-x-2 mb-4">
11
+ <Cpu className="h-6 w-6 text-primary" />
12
+ <span className="text-xl font-bold font-mono">NEXUS</span>
13
+ </Link>
14
+ <p className="text-gray-500 text-sm">
15
+ Pioneering the future of humanoid robotics and artificial intelligence integration.
16
+ </p>
17
+ </div>
18
+
19
+ <div>
20
+ <h4 className="font-bold mb-4 text-white">Products</h4>
21
+ <ul className="space-y-2 text-sm text-gray-400">
22
+ <li><a href="#" className="hover:text-primary transition-colors">Nexus One</a></li>
23
+ <li><a href="#" className="hover:text-primary transition-colors">Nexus Pro</a></li>
24
+ <li><a href="#" className="hover:text-primary transition-colors">Nexus Medical</a></li>
25
+ <li><a href="#" className="hover:text-primary transition-colors">Enterprise Solutions</a></li>
26
+ </ul>
27
+ </div>
28
+
29
+ <div>
30
+ <h4 className="font-bold mb-4 text-white">Company</h4>
31
+ <ul className="space-y-2 text-sm text-gray-400">
32
+ <li><a href="#" className="hover:text-primary transition-colors">About Us</a></li>
33
+ <li><a href="#" className="hover:text-primary transition-colors">Careers</a></li>
34
+ <li><a href="#" className="hover:text-primary transition-colors">Blog</a></li>
35
+ <li><a href="#" className="hover:text-primary transition-colors">Press</a></li>
36
+ </ul>
37
+ </div>
38
+
39
+ <div>
40
+ <h4 className="font-bold mb-4 text-white">Connect</h4>
41
+ <div className="flex space-x-4">
42
+ <a href="#" className="text-gray-400 hover:text-white transition-colors"><Twitter className="h-5 w-5" /></a>
43
+ <a href="#" className="text-gray-400 hover:text-white transition-colors"><Github className="h-5 w-5" /></a>
44
+ <a href="#" className="text-gray-400 hover:text-white transition-colors"><Linkedin className="h-5 w-5" /></a>
45
+ </div>
46
+ </div>
47
+ </div>
48
+
49
+ <div className="border-t border-white/10 pt-8 flex flex-col md:flex-row justify-between items-center">
50
+ <p className="text-gray-600 text-sm mb-4 md:mb-0">
51
+ © 2024 Nexus Robotics. All systems operational.
52
+ </p>
53
+
54
+ {/* CRITICAL REQUIREMENT */}
55
+ <a
56
+ href="https://huggingface.co/spaces/akhaliq/anycoder"
57
+ target="_blank"
58
+ rel="noopener noreferrer"
59
+ className="text-sm text-gray-500 hover:text-primary transition-colors flex items-center space-x-1 bg-white/5 px-3 py-1 rounded-full border border-white/5"
60
+ >
61
+ <span>Built with</span>
62
+ <span className="font-bold text-primary">anycoder</span>
63
+ </a>
64
+ </div>
65
+ </div>
66
+ </footer>
67
+ );
68
+ }