Update components/footer.tsx

This commit is contained in:
kleap-admin 2026-01-18 18:55:31 +00:00
parent 0a022a1857
commit 24eb32ff11
1 changed files with 30 additions and 0 deletions

30
components/footer.tsx Normal file
View File

@ -0,0 +1,30 @@
import { Container } from "@/components/container";
import { Logo } from "@/components/Logo";
import Link from "next/link";
export function Footer() {
return (
<footer className="border-t py-12 bg-white">
<Container>
<div className="flex flex-col md:flex-row justify-between items-start md:items-center gap-8">
<div className="flex flex-col gap-4">
<Logo />
<p className="text-sm text-neutral-500 max-w-xs">
Empowering businesses with AI-driven automation and advanced security solutions.
</p>
</div>
<nav className="flex flex-wrap gap-x-8 gap-y-4">
<Link href="/" className="text-sm text-neutral-600 hover:text-primary transition-colors">Home</Link>
<Link href="#services" className="text-sm text-neutral-600 hover:text-primary transition-colors">Services</Link>
<Link href="#contact" className="text-sm text-neutral-600 hover:text-primary transition-colors">Contact</Link>
</nav>
</div>
<div className="mt-12 pt-8 border-t text-center">
<p className="text-sm text-neutral-400">
© {new Date().getFullYear()} Predator AI Solutions. All rights reserved.
</p>
</div>
</Container>
</footer>
);
}