Spaces:
Build error
Build error
| export default function Footer() { | |
| return ( | |
| <footer className="bg-marine-blue text-white py-8"> | |
| <div className="container mx-auto px-4"> | |
| <div className="flex flex-col md:flex-row justify-between items-center"> | |
| <div className="mb-4 md:mb-0"> | |
| <p>© {new Date().getFullYear()} SABMARINE. All rights reserved.</p> | |
| </div> | |
| <div className="flex space-x-4"> | |
| <a href="#" className="hover:text-marine-gold transition-colors">Privacy Policy</a> | |
| <a href="#" className="hover:text-marine-gold transition-colors">Terms of Service</a> | |
| <a href="#" className="hover:text-marine-gold transition-colors">Contact Us</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| ); | |
| } |