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