49 lines
2.1 KiB
TypeScript
49 lines
2.1 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-neutral-50 dark:bg-neutral-900">
|
|
<Container>
|
|
<div className="flex flex-col md:flex-row justify-between items-start gap-8">
|
|
<div className="max-w-xs">
|
|
<Logo />
|
|
<p className="mt-4 text-sm text-muted-foreground">
|
|
Astra Leads is a premier lead generation agency dedicated to helping B2B companies scale through predictable outreach systems.
|
|
</p>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-2 sm:grid-cols-3 gap-12">
|
|
<div>
|
|
<h4 className="font-semibold mb-4">Agency</h4>
|
|
<ul className="space-y-2 text-sm text-muted-foreground">
|
|
<li><Link href="#services" className="hover:text-primary">Services</Link></li>
|
|
<li><Link href="#contact" className="hover:text-primary">Contact</Link></li>
|
|
<li><a href="tel:0721307788" className="hover:text-primary">0721 307 788</a></li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<h4 className="font-semibold mb-4">Legal</h4>
|
|
<ul className="space-y-2 text-sm text-muted-foreground">
|
|
<li><Link href="/privacy" className="hover:text-primary">Privacy Policy</Link></li>
|
|
<li><Link href="/terms" className="hover:text-primary">Terms of Service</Link></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="border-t mt-12 pt-8 flex flex-col md:flex-row justify-between items-center gap-4">
|
|
<p className="text-sm text-muted-foreground">
|
|
© {new Date().getFullYear()} Astra Leads. All rights reserved.
|
|
</p>
|
|
<div className="flex gap-6">
|
|
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">Twitter</a>
|
|
<a href="#" className="text-muted-foreground hover:text-primary transition-colors">LinkedIn</a>
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
</footer>
|
|
);
|
|
}
|