File size: 657 Bytes
714f03b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
  );
}