Update components/footer.tsx
This commit is contained in:
parent
1e8d4dee2d
commit
ec8ea46c40
|
|
@ -0,0 +1,37 @@
|
|||
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>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue