ti1a commited on
Commit
0620655
·
verified ·
1 Parent(s): bc88666

Upload components/Footer.jsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/Footer.jsx +46 -0
components/Footer.jsx ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ export default function Footer() {
2
+ return (
3
+ <footer className="bg-gray-900 text-white py-12">
4
+ <div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
5
+ <div className="grid grid-cols-1 md:grid-cols-4 gap-8">
6
+ <div>
7
+ <h3 className="text-2xl font-bold mb-4">ChromaVector</h3>
8
+ <p className="text-gray-400">
9
+ Specialized Chroma vector database solutions for modern AI applications
10
+ </p>
11
+ </div>
12
+ <div>
13
+ <h4 className="font-semibold mb-4">Services</h4>
14
+ <ul className="space-y-2 text-gray-400">
15
+ <li>Implementation</li>
16
+ <li>Managed Services</li>
17
+ <li>Training</li>
18
+ <li>Support</li>
19
+ </ul>
20
+ </div>
21
+ <div>
22
+ <h4 className="font-semibold mb-4">Company</h4>
23
+ <ul className="space-y-2 text-gray-400">
24
+ <li>About Us</li>
25
+ <li>Case Studies</li>
26
+ <li>Blog</li>
27
+ <li>Careers</li>
28
+ </ul>
29
+ </div>
30
+ <div>
31
+ <h4 className="font-semibold mb-4">Connect</h4>
32
+ <ul className="space-y-2 text-gray-400">
33
+ <li>Twitter</li>
34
+ <li>LinkedIn</li>
35
+ <li>GitHub</li>
36
+ <li>Discord</li>
37
+ </ul>
38
+ </div>
39
+ </div>
40
+ <div className="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400">
41
+ <p>&copy; 2024 ChromaVector. All rights reserved.</p>
42
+ </div>
43
+ </div>
44
+ </footer>
45
+ );
46
+ }