import React from 'react'; import { Youtube, Instagram, Facebook, Linkedin, Twitter, MapPin, Phone, Mail, ExternalLink } from 'lucide-react'; const Footer: React.FC = () => { const currentYear = new Date().getFullYear(); const footerLinks = { col1: [ { name: 'About The College', href: 'https://ritchennai.org' }, { name: 'News Room', href: 'https://ritchennai.org' }, { name: 'Governing Council', href: 'https://ritchennai.org/about-governing-council.php' }, { name: 'Career @ RIT', href: 'https://ritchennai.org' }, { name: 'Blog', href: 'https://ritchennai.org' }, { name: 'In alliance with Rajalakshmi Eduverse (www.myeduverse.net) - Cancellation & Refund Policy', href: 'https://ritchennai.org' }, ], col2: [ { name: 'Courses', href: 'https://www.ritchennai.org/admission-courses-offered.php' }, { name: 'Admissions', href: 'https://www.ritchennai.org/admission-eligibility.php' }, { name: 'Eligibility', href: 'https://www.ritchennai.org/admission-eligibility.php' }, { name: 'Code of Conduct - Students', href: 'https://ritchennai.org' }, { name: 'Online Fees Payment', href: 'https://ritchennai.org' }, { name: 'Terms & Conditions', href: 'https://ritchennai.org' }, ], col3: [ { name: 'Library', href: 'https://ritchennai.org' }, { name: 'Hostel', href: 'https://ritchennai.org' }, { name: 'Sports', href: 'https://ritchennai.org' }, { name: 'Transport', href: 'https://ritchennai.org' }, { name: 'HR Manual', href: 'https://ritchennai.org' }, { name: 'Patent', href: 'https://ritchennai.org' }, { name: 'Audited Statements', href: 'https://ritchennai.org' }, { name: 'Shopping and Delivery Conditions', href: 'https://ritchennai.org' }, ], }; const socialLinks = [ { icon: Facebook, href: 'https://www.facebook.com/ritchennai/', color: 'hover:text-blue-600' }, { icon: Twitter, href: 'https://x.com/rit_chennai', color: 'hover:text-sky-500' }, { icon: Instagram, href: 'https://www.instagram.com/ritchennai/', color: 'hover:text-pink-600' }, { icon: Linkedin, href: 'https://www.linkedin.com/school/rajalakshmi-institute-of-technology/', color: 'hover:text-blue-700' }, { icon: Youtube, href: 'https://youtube.com/@rajalakshmiinstituteoftech4448?si=jRmCDzp9dbwBLVQI', color: 'hover:text-red-600' }, ]; return ( ); }; export default Footer;