30 lines
1.5 KiB
TypeScript
30 lines
1.5 KiB
TypeScript
import Link from "next/link";
|
|
export default function Footer() {
|
|
return (
|
|
<footer className="border-t">
|
|
<div className="container grid gap-6 py-10 sm:grid-cols-3">
|
|
<div>
|
|
<div className="text-lg font-semibold">Van Hunen IT</div>
|
|
<p className="mt-2 text-sm text-muted-foreground">Fixes in days. Uptime for months.</p>
|
|
</div>
|
|
<div>
|
|
<div className="text-sm font-semibold">Links</div>
|
|
<ul className="mt-2 space-y-1 text-sm">
|
|
<li><Link href="/services" className="no-underline hover:underline">Services</Link></li>
|
|
<li><Link href="/free" className="no-underline hover:underline">Free tools</Link></li>
|
|
<li><Link href="/contact" className="no-underline hover:underline">Contact</Link></li>
|
|
<li><Link href="/privacy" className="no-underline hover:underline">Privacy</Link></li>
|
|
<li><Link href="/terms" className="no-underline hover:underline">Terms</Link></li>
|
|
<li><Link href="/cookie" className="no-underline hover:underline">Cookie</Link></li>
|
|
</ul>
|
|
</div>
|
|
<div>
|
|
<div className="text-sm font-semibold">Contact</div>
|
|
<p className="mt-2 text-sm text-muted-foreground">Email: <a href="mailto:hello@vanhunen.it" className="underline">hello@vanhunen.it</a></p>
|
|
<p className="mt-2 text-xs text-muted-foreground">© {new Date().getFullYear()} Van Hunen IT. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|