Svenson1974's picture
Upload components/Footer.jsx with huggingface_hub
7237ea7 verified
raw
history blame contribute delete
763 Bytes
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>
);
}