Update components/footer.tsx
This commit is contained in:
parent
d25090391e
commit
8ae889062e
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
Loading…
Reference in New Issue