ref:Cleaned the Structure

This commit is contained in:
2025-11-07 14:20:22 +05:30
parent d7dbcff4b6
commit 1b622b6a19
42 changed files with 2164 additions and 806 deletions

View File

@@ -0,0 +1,17 @@
import Link from 'next/link';
export function Footer() {
return (
<footer className="mt-24 border-t border-slate-200 bg-white/80">
<div className="container-max py-10 flex flex-col sm:flex-row items-center justify-between gap-6">
<div className="text-sm text-slate-600">© {new Date().getFullYear()} Nordic Privacy AI. Hackathon prototype.</div>
<nav className="flex gap-6 text-sm">
<Link href="#features" className="hover:text-brand-600">Features</Link>
<Link href="#agents" className="hover:text-brand-600">Agents</Link>
<Link href="#contact" className="hover:text-brand-600">Contact</Link>
<Link href="/try" className="hover:text-brand-600">Try</Link>
</nav>
</div>
</footer>
);
}