mirror of
https://github.com/PlatypusPus/MushroomEmpire.git
synced 2026-02-08 06:28:58 +00:00
18 lines
773 B
TypeScript
18 lines
773 B
TypeScript
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>
|
|
);
|
|
}
|