Update components/footer.tsx

This commit is contained in:
kleap-admin 2026-01-16 16:41:24 +00:00
parent 9221f3e6b8
commit 0f5f94265e
1 changed files with 30 additions and 0 deletions

30
components/footer.tsx Normal file
View File

@ -0,0 +1,30 @@
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>
<p className="text-xl font-bold text-blue-600">Miami Elite Coaching</p>
<p className="text-sm text-neutral-500 mt-2">
© {new Date().getFullYear()} Miami Elite Coaching. All rights reserved.
</p>
</div>
<nav className="flex gap-8">
<Link href="#" className="text-sm text-neutral-600 hover:text-blue-600 transition-colors">
Privacy Policy
</Link>
<Link href="#" className="text-sm text-neutral-600 hover:text-blue-600 transition-colors">
Terms of Service
</Link>
<Link href="#" className="text-sm text-neutral-600 hover:text-blue-600 transition-colors">
Contact
</Link>
</nav>
</div>
</Container>
</footer>
);
}