Update components/footer.tsx

This commit is contained in:
kleap-admin 2026-01-18 18:30:24 +00:00
parent 43a9fa8227
commit 5a8acfafcc
1 changed files with 31 additions and 0 deletions

31
components/footer.tsx Normal file
View File

@ -0,0 +1,31 @@
import { Container } from "@/components/container";
import { Logo } from "@/components/Logo";
import Link from "next/link";
export function Footer() {
return (
<footer className="py-12 border-t border-neutral-100">
<Container>
<div className="flex flex-col md:flex-row justify-between items-center gap-8">
<div className="flex flex-col items-center md:items-start gap-4">
<Logo />
<p className="text-sm text-neutral-500 max-w-xs text-center md:text-left">
Empowering the next generation of Indian students with practical skills and career clarity.
</p>
</div>
<div className="flex flex-col items-center md:items-end gap-4">
<div className="flex gap-6">
<Link href="#" className="text-sm text-neutral-600 hover:text-blue-600 transition-colors">Privacy Policy</Link>
<Link href="#" className="text-sm text-neutral-600 hover:text-blue-600 transition-colors">Terms of Service</Link>
<Link href="#" className="text-sm text-neutral-600 hover:text-blue-600 transition-colors">Investor Relations</Link>
</div>
<p className="text-sm text-neutral-400">
© 2026 SkillUp India EdTech. All rights reserved.
</p>
</div>
</div>
</Container>
</footer>
);
}