M-Zeki's picture
Upload components/Footer.js with huggingface_hub
714f03b verified
Raw
History Blame Contribute Delete
657 Bytes
export default function Footer() {
return (
<footer className="py-12 px-6 border-t border-white/5 text-center mt-20">
<div className="max-w-7xl mx-auto flex flex-col md:flex-row items-center justify-between gap-6">
<span className="clinical-text opacity-40">
© 2026 Nordic AI Data Ops. All Rights Reserved.
</span>
<div className="flex gap-8">
<a href="#" className="clinical-text hover:text-aurora-cyan transition-colors">Privacy Policy</a>
<a href="#" className="clinical-text hover:text-aurora-cyan transition-colors">Terms of Service</a>
</div>
</div>
</footer>
);
}