Update components/footer.tsx

This commit is contained in:
kleap-admin 2026-01-15 14:28:43 +00:00
parent d8b455f1da
commit efae106bde
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-6">
<div className="flex flex-col items-center md:items-start gap-2">
<p className="text-sm font-semibold text-neutral-900">CalcMaster</p>
<p className="text-xs text-neutral-500">
© {new Date().getFullYear()} CalcMaster Inc. All rights reserved.
</p>
</div>
<nav className="flex gap-8">
<Link href="#" className="text-xs text-neutral-500 hover:text-neutral-900 transition-colors">
Privacy Policy
</Link>
<Link href="#" className="text-xs text-neutral-500 hover:text-neutral-900 transition-colors">
Terms of Service
</Link>
<Link href="#" className="text-xs text-neutral-500 hover:text-neutral-900 transition-colors">
Contact Support
</Link>
</nav>
</div>
</Container>
</footer>
);
}