app-golden-quokka-skip/components/footer.tsx

31 lines
1.2 KiB
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-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>
);
}