Update components/footer.tsx

This commit is contained in:
kleap-admin 2026-01-16 10:55:01 +00:00
parent d25090391e
commit 8ae889062e
1 changed files with 27 additions and 0 deletions

27
components/footer.tsx Normal file
View File

@ -0,0 +1,27 @@
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-4">
<div className="flex items-center gap-2">
<span className="font-bold text-xl">InvoiceGen</span>
</div>
<p className="text-sm text-neutral-600">
© {new Date().getFullYear()} InvoiceGen Inc. All rights reserved.
</p>
<nav className="flex gap-6">
<Link href="#" className="text-sm text-neutral-600 hover:text-neutral-900">
Privacy Policy
</Link>
<Link href="#" className="text-sm text-neutral-600 hover:text-neutral-900">
Terms of Service
</Link>
</nav>
</div>
</Container>
</footer>
);
}