32 lines
1.4 KiB
TypeScript
32 lines
1.4 KiB
TypeScript
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>
|
|
);
|
|
}
|