23 lines
1.2 KiB
TypeScript
23 lines
1.2 KiB
TypeScript
import Link from "next/link";
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer className="bg-gray-950 border-t border-gray-800 py-12 mt-16">
|
|
<div className="max-w-6xl mx-auto px-4 flex flex-col md:flex-row items-center justify-between gap-6">
|
|
<div>
|
|
<p className="text-xl font-bold text-white text-glow">SZMYT AI Labs</p>
|
|
<p className="text-gray-500 text-sm mt-1">AI Agenty dla Twojej Firmy</p>
|
|
</div>
|
|
<div className="flex gap-8">
|
|
<Link href="/" className="text-gray-400 hover:text-cyan-400 transition-colors text-sm">Strona główna</Link>
|
|
<Link href="/oferta" className="text-gray-400 hover:text-cyan-400 transition-colors text-sm">Oferta</Link>
|
|
<Link href="/blog" className="text-gray-400 hover:text-cyan-400 transition-colors text-sm">Blog</Link>
|
|
<Link href="/about" className="text-gray-400 hover:text-cyan-400 transition-colors text-sm">O nas</Link>
|
|
<Link href="/#kontakt" className="text-gray-400 hover:text-cyan-400 transition-colors text-sm">Kontakt</Link>
|
|
</div>
|
|
<p className="text-gray-600 text-sm">© 2026 SZMYT AI Labs. Wszystkie prawa zastrzeżone.</p>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|