Svenson1974 commited on
Commit
7237ea7
·
verified ·
1 Parent(s): eb4acfa

Upload components/Footer.jsx with huggingface_hub

Browse files
Files changed (1) hide show
  1. components/Footer.jsx +18 -0
components/Footer.jsx ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ export default function Footer() {
2
+ return (
3
+ <footer className="bg-marine-blue text-white py-8">
4
+ <div className="container mx-auto px-4">
5
+ <div className="flex flex-col md:flex-row justify-between items-center">
6
+ <div className="mb-4 md:mb-0">
7
+ <p>© {new Date().getFullYear()} SABMARINE. All rights reserved.</p>
8
+ </div>
9
+ <div className="flex space-x-4">
10
+ <a href="#" className="hover:text-marine-gold transition-colors">Privacy Policy</a>
11
+ <a href="#" className="hover:text-marine-gold transition-colors">Terms of Service</a>
12
+ <a href="#" className="hover:text-marine-gold transition-colors">Contact Us</a>
13
+ </div>
14
+ </div>
15
+ </div>
16
+ </footer>
17
+ );
18
+ }