Update components/footer.tsx

This commit is contained in:
kleap-admin 2026-01-18 14:07:01 +00:00
parent 6aa5b1236f
commit aff3ccc64a
1 changed files with 71 additions and 0 deletions

71
components/footer.tsx Normal file
View File

@ -0,0 +1,71 @@
import { Container } from "@/components/container";
import Link from "next/link";
export function Footer() {
return (
<footer className="bg-[#7A1F2B] text-white py-12">
<Container>
<div className="text-center">
{/* Company Name */}
<div className="mb-6">
<h3 className="text-2xl md:text-3xl font-bold mb-2">
Enam International Consultancy
</h3>
<p className="text-white/80 text-lg">
A Concern of Enam Group
</p>
</div>
{/* Tagline */}
<div className="mb-8">
<p className="text-xl font-semibold text-white/90 mb-2">
ি ি
</p>
<p className="text-lg text-white/80">
Your Trusted Global Career Partner
</p>
</div>
{/* Quick Links */}
<div className="flex flex-wrap justify-center gap-6 mb-8 text-white/80">
<Link href="#services" className="hover:text-white transition-colors">
Services
</Link>
<Link href="#about" className="hover:text-white transition-colors">
About
</Link>
<Link href="#contact" className="hover:text-white transition-colors">
Contact
</Link>
<a
href="https://www.enamgroup.com"
target="_blank"
rel="noopener noreferrer"
className="hover:text-white transition-colors"
>
Enam Group
</a>
</div>
{/* Contact Info */}
<div className="mb-8 pb-8 border-b border-white/20">
<p className="text-white/80 mb-2">
📞 +880 1334 935 472
</p>
<p className="text-white/80">
🌐 www.enamgroup.com
</p>
</div>
{/* Copyright */}
<div className="text-white/70 text-sm">
<p>© {new Date().getFullYear()} Enam International Consultancy. All rights reserved.</p>
<p className="mt-2">
International Skill Training Overseas Job Placement Visa Consultancy
</p>
</div>
</div>
</Container>
</footer>
);
}