app-happy-bear-bop/components/footer.tsx

31 lines
1.1 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>
<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>
);
}