38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import { Container } from "@/components/container";
|
|
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-center gap-8">
|
|
<div>
|
|
<Link href="/" className="text-xl font-bold tracking-tight">
|
|
Alex Rivera
|
|
</Link>
|
|
<p className="text-sm text-neutral-500 mt-2">
|
|
Growth Strategy for B2B SaaS Founders.
|
|
</p>
|
|
</div>
|
|
|
|
<nav className="flex gap-8">
|
|
<Link href="#services" className="text-sm text-neutral-600 hover:text-neutral-900">
|
|
Services
|
|
</Link>
|
|
<Link href="#results" className="text-sm text-neutral-600 hover:text-neutral-900">
|
|
Results
|
|
</Link>
|
|
<Link href="#book" className="text-sm text-neutral-600 hover:text-neutral-900">
|
|
Book a Call
|
|
</Link>
|
|
</nav>
|
|
|
|
<div className="text-sm text-neutral-500">
|
|
© {new Date().getFullYear()} Alex Rivera. All rights reserved.
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
</footer>
|
|
);
|
|
}
|