app-peaceful-lobster-dive/components/footer.tsx

28 lines
942 B
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-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>
);
}