31 lines
1.3 KiB
TypeScript
31 lines
1.3 KiB
TypeScript
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>
|
|
);
|
|
}
|